From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 1 01:20:06 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40D4016A420 for ; Wed, 1 Mar 2006 01:20:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C58243D53 for ; Wed, 1 Mar 2006 01:20:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k211K5gN009034 for ; Wed, 1 Mar 2006 01:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k211K52g009033; Wed, 1 Mar 2006 01:20:05 GMT (envelope-from gnats) Resent-Date: Wed, 1 Mar 2006 01:20:05 GMT Resent-Message-Id: <200603010120.k211K52g009033@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jean-François BOEUF Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9908616A420 for ; Wed, 1 Mar 2006 01:15:28 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EBE643D46 for ; Wed, 1 Mar 2006 01:15:28 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k211FStV024720 for ; Wed, 1 Mar 2006 01:15:28 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k211FSm7024719; Wed, 1 Mar 2006 01:15:28 GMT (envelope-from nobody) Message-Id: <200603010115.k211FSm7024719@www.freebsd.org> Date: Wed, 1 Mar 2006 01:15:28 GMT From: Jean-François BOEUF To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: ports/93964: [PATCH] www/bblog UNBREAK pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Mar 2006 01:20:06 -0000 >Number: 93964 >Category: ports >Synopsis: [PATCH] www/bblog UNBREAK pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Mar 01 01:20:04 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jean-François BOEUF >Release: FreeBSD 6.0-RELEASE-p4 i386 >Organization: >Environment: >Description: - Port is marqued as BROKEN : auto-generated plist causes problems when deinstalling after make install sequence (files remain) or when using package (try to delete unexistant directory). >How-To-Repeat: >Fix: The patch cancels auto-generating plist and adds a correct static one. bblog.diff ================================================================================== --- ports/www/bblog/Makefile Tue Feb 28 07:35:33 2006 +++ ports/www/bblog/Makefile Wed Mar 1 00:50:19 2006 @@ -7,6 +7,7 @@ PORTNAME= bBlog PORTVERSION= 0.7.6 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bblog @@ -15,8 +16,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A elegant personal publishing system with Smarty -BROKEN= Incomplete pkg-plist - USE_PHP= mysql pcre session PHP4_PORT?= www/mod_php4 NO_BUILD= YES @@ -29,7 +28,6 @@ WWWOWN?= www WWWGRP?= www BBLOGDIR?= ${WWWDOCROOT}/${BBLOGURL} -PLIST= ${WRKDIR}/pkg-plist OPTIONS= GD "With GD Support" on \ IMAGICK "With ImageMagick Support" off @@ -49,15 +47,6 @@ @${ECHO_CMD} "Without GD or ImageMagick support. No thumbnails will be generated at all." .endif -pre-install: - cd ${WRKSRC} && ${FIND} -s . -type f | \ - ${GREP} -v _done. | \ - ${GREP} -v '.PLIST' | \ - ${SED} -e 's|^./||;s|^|${BBLOGDIR}/|' > ${PLIST} \ - && ${FIND} -d * -type d | \ - ${SED} -e 's|^|@dirrm ${BBLOGDIR}/|' >> ${PLIST} \ - && ${ECHO_CMD} @dirrm ${BBLOGDIR} >> ${PLIST} - do-install: @${MKDIR} ${PREFIX}/${BBLOGDIR} @${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/${BBLOGDIR} @@ -65,7 +54,6 @@ @${CP} -R ${WRKSRC}/ ${PREFIX}/${BBLOGDIR} @${RM} ${PREFIX}/${BBLOGDIR}/.PLIST* @${RM} ${PREFIX}/${BBLOGDIR}/.*done* -# @${CP} -R ${WRKSRC}/${BBLOGURL}/ ${PREFIX}/${BBLOGDIR} @${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/bblog/install.php @${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/bblog/compiled_templates/ @${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/bblog/cache/ --- ports/www/bblog/pkg-plist Fri Apr 22 04:04:06 2005 +++ ports/www/bblog/pkg-plist Wed Mar 1 00:34:34 2006 @@ -1 +1,308 @@ -@comment real PLIST will be generated in pre-install phase +www/data-dist/bblog/archives.php +www/data-dist/bblog/bblog/bBlog_plugins/admin.comments.php +www/data-dist/bblog/bblog/bBlog_plugins/admin.links.php +www/data-dist/bblog/bblog/bBlog_plugins/admin.rss.php +www/data-dist/bblog/bblog/bBlog_plugins/admin.rssfeedmaker.php +www/data-dist/bblog/bblog/bBlog_plugins/admin.sections.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.about.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.archives.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.help.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.options.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.plugins.php +www/data-dist/bblog/bblog/bBlog_plugins/builtin.post.php +www/data-dist/bblog/bblog/bBlog_plugins/function.archivemonths.php +www/data-dist/bblog/bblog/bBlog_plugins/function.blogroll.php +www/data-dist/bblog/bblog/bBlog_plugins/function.calendar.php +www/data-dist/bblog/bblog/bBlog_plugins/function.email.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getarchiveposts.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getarchives.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getcomments.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getcontent.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getpost.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getposts.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getrecentposts.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getrss.php +www/data-dist/bblog/bblog/bBlog_plugins/function.getsections.php +www/data-dist/bblog/bblog/bBlog_plugins/function.header.php +www/data-dist/bblog/bblog/bBlog_plugins/function.links.php +www/data-dist/bblog/bblog/bBlog_plugins/function.nextprev.php +www/data-dist/bblog/bblog/bBlog_plugins/function.recentposts.php +www/data-dist/bblog/bblog/bBlog_plugins/function.referers.php +www/data-dist/bblog/bblog/bBlog_plugins/function.sapi_test.php +www/data-dist/bblog/bblog/bBlog_plugins/function.sectionlinks.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.bbcode.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.date_format.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.htmlspecialchars.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.kses.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.locale.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.none.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.readmore.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.simple.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.smartypost.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.textile.php +www/data-dist/bblog/bblog/bBlog_plugins/modifier.texturize.php +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/cls_convertor.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/doc.zip +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/extlib/Snoopy.class.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/rss_cache.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/rss_fetch.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/rss_parse.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/library/rss_utils.inc +www/data-dist/bblog/bblog/bBlog_plugins/rss/rss.php +www/data-dist/bblog/bblog/bblog.css +www/data-dist/bblog/bblog/cache/favorites.xml +www/data-dist/bblog/bblog/compiled_templates/this_file_is_here_so_the_directory_is_extracted +www/data-dist/bblog/bblog/config.php +www/data-dist/bblog/bblog/cp.css +www/data-dist/bblog/bblog/docs/LICENCE.txt +www/data-dist/bblog/bblog/docs/README.txt +www/data-dist/bblog/bblog/docs/changelog.txt +www/data-dist/bblog/bblog/images/README.txt +www/data-dist/bblog/bblog/images/asseenontv.gif +www/data-dist/bblog/bblog/images/bb.gif +www/data-dist/bblog/bblog/images/bblog.gif +www/data-dist/bblog/bblog/images/bblogpowered.png +www/data-dist/bblog/bblog/images/blogroll2.gif +www/data-dist/bblog/bblog/images/css.gif +www/data-dist/bblog/bblog/images/csstableless.gif +www/data-dist/bblog/bblog/images/deviantart2.gif +www/data-dist/bblog/bblog/images/email.gif +www/data-dist/bblog/bblog/images/gnu.gif +www/data-dist/bblog/bblog/images/google_copy1.gif +www/data-dist/bblog/bblog/images/icq.gif +www/data-dist/bblog/bblog/images/icq2.gif +www/data-dist/bblog/bblog/images/mozillabetter.gif +www/data-dist/bblog/bblog/images/nz.gif +www/data-dist/bblog/bblog/images/onebuck.gif +www/data-dist/bblog/bblog/images/paypal2.gif +www/data-dist/bblog/bblog/images/phpaddict.gif +www/data-dist/bblog/bblog/images/phppow.gif +www/data-dist/bblog/bblog/images/phpren.gif +www/data-dist/bblog/bblog/images/rdf.gif +www/data-dist/bblog/bblog/images/rss092.gif +www/data-dist/bblog/bblog/images/rss2.gif +www/data-dist/bblog/bblog/images/rssvalid.gif +www/data-dist/bblog/bblog/images/smarty.gif +www/data-dist/bblog/bblog/images/smsme.gif +www/data-dist/bblog/bblog/images/trillian2.gif +www/data-dist/bblog/bblog/images/wbloggar.gif +www/data-dist/bblog/bblog/images/webstandards.gif +www/data-dist/bblog/bblog/images/xhtml10.gif +www/data-dist/bblog/bblog/inc/SettingsAPI.class.php +www/data-dist/bblog/bblog/inc/admin_templates/about.html +www/data-dist/bblog/bblog/inc/admin_templates/archives.html +www/data-dist/bblog/bblog/inc/admin_templates/atom.html +www/data-dist/bblog/bblog/inc/admin_templates/common/html_start.html +www/data-dist/bblog/bblog/inc/admin_templates/common/html_stop.html +www/data-dist/bblog/bblog/inc/admin_templates/common/layout_start.html +www/data-dist/bblog/bblog/inc/admin_templates/common/layout_stop.html +www/data-dist/bblog/bblog/inc/admin_templates/common/message.html +www/data-dist/bblog/bblog/inc/admin_templates/common/popup-footer.html +www/data-dist/bblog/bblog/inc/admin_templates/common/popup-header.html +www/data-dist/bblog/bblog/inc/admin_templates/common/post_edit.html +www/data-dist/bblog/bblog/inc/admin_templates/common/teaser.html +www/data-dist/bblog/bblog/inc/admin_templates/error.html +www/data-dist/bblog/bblog/inc/admin_templates/help.html +www/data-dist/bblog/bblog/inc/admin_templates/login.html +www/data-dist/bblog/bblog/inc/admin_templates/message.html +www/data-dist/bblog/bblog/inc/admin_templates/options.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/comments_admin.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/links.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/rss.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/rssfeedmaker.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/sections.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins/templates.html +www/data-dist/bblog/bblog/inc/admin_templates/plugins.html +www/data-dist/bblog/bblog/inc/admin_templates/popuppost.html +www/data-dist/bblog/bblog/inc/admin_templates/post.html +www/data-dist/bblog/bblog/inc/admin_templates/rss092.html +www/data-dist/bblog/bblog/inc/admin_templates/rss10.html +www/data-dist/bblog/bblog/inc/admin_templates/rss20.html +www/data-dist/bblog/bblog/inc/admin_templates/smartypost.html +www/data-dist/bblog/bblog/inc/admin_templates/standalone_message.html +www/data-dist/bblog/bblog/inc/bBlog.class.php +www/data-dist/bblog/bblog/inc/bookmarkletstuff.php +www/data-dist/bblog/bblog/inc/charsets.php +www/data-dist/bblog/bblog/inc/credits.php +www/data-dist/bblog/bblog/inc/functions.php +www/data-dist/bblog/bblog/inc/init.php +www/data-dist/bblog/bblog/inc/mail.php +www/data-dist/bblog/bblog/inc/taglines.php +www/data-dist/bblog/bblog/inc/templates.php +www/data-dist/bblog/bblog/index.php +www/data-dist/bblog/bblog/install/cleanurltest/.htaccess +www/data-dist/bblog/bblog/install/cleanurltest/test +www/data-dist/bblog/bblog/install/footer.php +www/data-dist/bblog/bblog/install/header.php +www/data-dist/bblog/bblog/install/index.html +www/data-dist/bblog/bblog/install/standalone.upgrade.bblog07.php +www/data-dist/bblog/bblog/install/steps.php +www/data-dist/bblog/bblog/install/upgrade.bblog07.php +www/data-dist/bblog/bblog/install.php +www/data-dist/bblog/bblog/libs/Config_File.class.php +www/data-dist/bblog/bblog/libs/Smarty.class.php +www/data-dist/bblog/bblog/libs/Smarty_Compiler.class.php +www/data-dist/bblog/bblog/libs/core/core.assemble_auto_filename.php +www/data-dist/bblog/bblog/libs/core/core.assemble_plugin_filepath.php +www/data-dist/bblog/bblog/libs/core/core.assign_smarty_interface.php +www/data-dist/bblog/bblog/libs/core/core.create_dir_structure.php +www/data-dist/bblog/bblog/libs/core/core.display_debug_console.php +www/data-dist/bblog/bblog/libs/core/core.get_include_path.php +www/data-dist/bblog/bblog/libs/core/core.get_microtime.php +www/data-dist/bblog/bblog/libs/core/core.get_php_resource.php +www/data-dist/bblog/bblog/libs/core/core.is_secure.php +www/data-dist/bblog/bblog/libs/core/core.is_trusted.php +www/data-dist/bblog/bblog/libs/core/core.load_plugins.php +www/data-dist/bblog/bblog/libs/core/core.load_resource_plugin.php +www/data-dist/bblog/bblog/libs/core/core.process_cached_inserts.php +www/data-dist/bblog/bblog/libs/core/core.process_compiled_include.php +www/data-dist/bblog/bblog/libs/core/core.read_cache_file.php +www/data-dist/bblog/bblog/libs/core/core.rm_auto.php +www/data-dist/bblog/bblog/libs/core/core.rmdir.php +www/data-dist/bblog/bblog/libs/core/core.run_insert_handler.php +www/data-dist/bblog/bblog/libs/core/core.smarty_include_php.php +www/data-dist/bblog/bblog/libs/core/core.write_cache_file.php +www/data-dist/bblog/bblog/libs/core/core.write_cache_paths_file.php +www/data-dist/bblog/bblog/libs/core/core.write_compiled_include.php +www/data-dist/bblog/bblog/libs/core/core.write_compiled_resource.php +www/data-dist/bblog/bblog/libs/core/core.write_file.php +www/data-dist/bblog/bblog/libs/debug.tpl +www/data-dist/bblog/bblog/libs/ez_sql.php +www/data-dist/bblog/bblog/libs/rpc.php +www/data-dist/bblog/bblog/make_bookmarklet.php +www/data-dist/bblog/bblog/script/index.js +www/data-dist/bblog/bblog/script/xlib/CHANGELOG +www/data-dist/bblog/bblog/script/xlib/LICENSE +www/data-dist/bblog/bblog/script/xlib/README +www/data-dist/bblog/bblog/script/xlib/changelog.xml +www/data-dist/bblog/bblog/script/xlib/javascript/xBrowser.js +www/data-dist/bblog/bblog/script/xlib/javascript/xCheck.js +www/data-dist/bblog/bblog/script/xlib/javascript/xColumns.js +www/data-dist/bblog/bblog/script/xlib/javascript/xCore.js +www/data-dist/bblog/bblog/script/xlib/javascript/xDebug.js +www/data-dist/bblog/bblog/script/xlib/javascript/xDialog.js +www/data-dist/bblog/bblog/script/xlib/javascript/xHash.js +www/data-dist/bblog/bblog/script/xlib/javascript/xImage.js +www/data-dist/bblog/bblog/script/xlib/javascript/xLayer.js +www/data-dist/bblog/bblog/script/xlib/javascript/xLoader.js +www/data-dist/bblog/bblog/script/xlib/javascript/xMath.js +www/data-dist/bblog/bblog/script/xlib/javascript/xMenu.js +www/data-dist/bblog/bblog/script/xlib/javascript/xObject.js +www/data-dist/bblog/bblog/script/xlib/javascript/xSignals.js +www/data-dist/bblog/bblog/script/xlib/javascript/xStatus.js +www/data-dist/bblog/bblog/script/xlib/javascript/xWindow.js +www/data-dist/bblog/bblog/smarty_plugins/block.strip.php +www/data-dist/bblog/bblog/smarty_plugins/block.textformat.php +www/data-dist/bblog/bblog/smarty_plugins/function.assign.php +www/data-dist/bblog/bblog/smarty_plugins/function.assign_debug_info.php +www/data-dist/bblog/bblog/smarty_plugins/function.config_load.php +www/data-dist/bblog/bblog/smarty_plugins/function.counter.php +www/data-dist/bblog/bblog/smarty_plugins/function.cycle.php +www/data-dist/bblog/bblog/smarty_plugins/function.debug.php +www/data-dist/bblog/bblog/smarty_plugins/function.eval.php +www/data-dist/bblog/bblog/smarty_plugins/function.fetch.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_checkboxes.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_image.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_options.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_radios.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_select_date.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_select_time.php +www/data-dist/bblog/bblog/smarty_plugins/function.html_table.php +www/data-dist/bblog/bblog/smarty_plugins/function.mailto.php +www/data-dist/bblog/bblog/smarty_plugins/function.math.php +www/data-dist/bblog/bblog/smarty_plugins/function.popup.php +www/data-dist/bblog/bblog/smarty_plugins/function.popup_init.php +www/data-dist/bblog/bblog/smarty_plugins/function.printr.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.capitalize.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.cat.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.count_characters.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.count_paragraphs.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.count_sentences.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.count_words.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.date_format.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.debug_print_var.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.default.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.escape.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.indent.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.lower.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.nl2br.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.nohtml.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.printr.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.regex_replace.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.replace.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.spacify.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.string_format.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.strip.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.strip_tags.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.truncate.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.upper.php +www/data-dist/bblog/bblog/smarty_plugins/modifier.wordwrap.php +www/data-dist/bblog/bblog/smarty_plugins/outputfilter.trimwhitespace.php +www/data-dist/bblog/bblog/smarty_plugins/shared.escape_special_chars.php +www/data-dist/bblog/bblog/smarty_plugins/shared.make_timestamp.php +www/data-dist/bblog/bblog/style/admin.IE.css +www/data-dist/bblog/bblog/style/admin.css +www/data-dist/bblog/bblog/style/admin_header_trans.png +www/data-dist/bblog/bblog/templates/dmig/README-INSTALL.html +www/data-dist/bblog/bblog/templates/dmig/archives.html +www/data-dist/bblog/bblog/templates/dmig/calendar.html +www/data-dist/bblog/bblog/templates/dmig/dmig.css +www/data-dist/bblog/bblog/templates/dmig/footer.html +www/data-dist/bblog/bblog/templates/dmig/header.html +www/data-dist/bblog/bblog/templates/dmig/index.html +www/data-dist/bblog/bblog/templates/dmig/main.html +www/data-dist/bblog/bblog/templates/dmig/post.html +www/data-dist/bblog/bblog/templates/dmig/rtl.css +www/data-dist/bblog/bblog/templates/dmig/section.html +www/data-dist/bblog/bblog/templates/dmig/side.html +www/data-dist/bblog/bblog/templates/dmig/template_thumb.jpg +www/data-dist/bblog/bblog/templates/lines/archives.html +www/data-dist/bblog/bblog/templates/lines/blue_stripes_header.gif +www/data-dist/bblog/bblog/templates/lines/blue_stripes_tile.gif +www/data-dist/bblog/bblog/templates/lines/blue_stripes_tile_left.gif +www/data-dist/bblog/bblog/templates/lines/calendar.html +www/data-dist/bblog/bblog/templates/lines/footer.html +www/data-dist/bblog/bblog/templates/lines/header.html +www/data-dist/bblog/bblog/templates/lines/index.html +www/data-dist/bblog/bblog/templates/lines/lines.css +www/data-dist/bblog/bblog/templates/lines/main.html +www/data-dist/bblog/bblog/templates/lines/post.html +www/data-dist/bblog/bblog/templates/lines/rtl.css +www/data-dist/bblog/bblog/templates/lines/section.html +www/data-dist/bblog/bblog/trackback.php +www/data-dist/bblog/bblog/xmlrpc.php +www/data-dist/bblog/documentation.txt +www/data-dist/bblog/htaccess-cleanurls +www/data-dist/bblog/index.php +www/data-dist/bblog/item +www/data-dist/bblog/rss.php +www/data-dist/bblog/search.php +www/data-dist/bblog/section +@dirrmtry www/data-dist/bblog/bblog/bBlog_plugins/rss/cache +@dirrm www/data-dist/bblog/bblog/bBlog_plugins/rss/library/extlib +@dirrm www/data-dist/bblog/bblog/bBlog_plugins/rss/library +@dirrm www/data-dist/bblog/bblog/bBlog_plugins/rss +@dirrm www/data-dist/bblog/bblog/bBlog_plugins +@dirrm www/data-dist/bblog/bblog/cache +@dirrm www/data-dist/bblog/bblog/compiled_templates +@dirrm www/data-dist/bblog/bblog/docs +@dirrm www/data-dist/bblog/bblog/images +@dirrm www/data-dist/bblog/bblog/inc/admin_templates/common +@dirrm www/data-dist/bblog/bblog/inc/admin_templates/plugins +@dirrm www/data-dist/bblog/bblog/inc/admin_templates +@dirrmtry www/data-dist/bblog/bblog/inc/bBlog_templates +@dirrm www/data-dist/bblog/bblog/inc +@dirrm www/data-dist/bblog/bblog/install/cleanurltest +@dirrm www/data-dist/bblog/bblog/install +@dirrm www/data-dist/bblog/bblog/libs/core +@dirrm www/data-dist/bblog/bblog/libs +@dirrm www/data-dist/bblog/bblog/script/xlib/javascript +@dirrm www/data-dist/bblog/bblog/script/xlib +@dirrm www/data-dist/bblog/bblog/script +@dirrm www/data-dist/bblog/bblog/smarty_plugins +@dirrm www/data-dist/bblog/bblog/style +@dirrm www/data-dist/bblog/bblog/templates/dmig +@dirrm www/data-dist/bblog/bblog/templates/lines +@dirrm www/data-dist/bblog/bblog/templates +@dirrm www/data-dist/bblog/bblog +@dirrm www/data-dist/bblog >Release-Note: >Audit-Trail: >Unformatted: