diff --git a/debian/changelog b/debian/changelog index 52595cb4e..d2bd52a8d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +ontowiki (0.9.8-3) lod2; urgency=low + + * fix cors header + * add doap:wiki to the weblink list (2 weeks ago by Sebastian Tramp) + * add head action to return the request header for given uri + * fix extensions setting page (toggleswitch) #179 + * Fixing Sort functionality of the Navigation Box extension re-enabling the Sort Menue + * prevent open paranthesis bug while using the limit buttons (100 / all) + * Fix #172 - rewrite rules in .htaccess + * use getReadableGraphsUsingResource method on Store + * cleanup togglebutton changes + * fix toggle button for new jquery version (#167) + * depends on Erfurt 1.5 + * depends on RDFauthor 0.9.5 + + -- Sebastian Tramp Wed, 30 Jan 2013 13:55:56 +0100 + ontowiki (0.9.7-2) lod2; urgency=low * GUI niceups diff --git a/debian/conf/apache2/apache.conf b/debian/conf/apache2/apache.conf index 2b461e113..45f84d190 100644 --- a/debian/conf/apache2/apache.conf +++ b/debian/conf/apache2/apache.conf @@ -1,16 +1,10 @@ # OntoWiki Apache Configuration - # needed for following the config.ini Options +FollowSymLinks - AllowOverride None - RewriteEngine On - RewriteBase /ontowiki/ - RewriteRule !((extensions|libraries).*|\.(js|ico|gif|jpg|png|css|php|swf|json))$ index.php - - # This gives ontowiki an easy hint that rewrite is enabled - SetEnv ONTOWIKI_APACHE_MOD_REWRITE_ENABLED 1 + # Give all right the the htaccess + AllowOverride All Alias /ontowiki /usr/share/ontowiki diff --git a/debian/control b/debian/control index 5e13bbb8f..2b64f3628 100644 --- a/debian/control +++ b/debian/control @@ -70,7 +70,7 @@ Description: Semantic Data Wiki enabling the publication of RDF data Package: ontowiki-common Architecture: all -Depends: liberfurt-php (>= 1.3), libjs-rdfauthor (>= 0.9.4), php5-curl, libmarkdown-php, libphp-pclzip, libjs-jquery (>= 1.7.1), tinymce, ${misc:Depends} +Depends: liberfurt-php (>= 1.5), libjs-rdfauthor (>= 0.9.5), php5-curl, libmarkdown-php, libphp-pclzip, libjs-jquery (>= 1.7.1), tinymce, ${misc:Depends} Suggests: owcli Description: Application sources for all ontowiki packages OntoWiki is a tool providing support for agile, distributed knowledge diff --git a/debian/ontowiki-common.install b/debian/ontowiki-common.install index af6c62a32..708d5ea32 100644 --- a/debian/ontowiki-common.install +++ b/debian/ontowiki-common.install @@ -1,4 +1,5 @@ index.php usr/share/ontowiki +.htaccess usr/share/ontowiki application/Bootstrap.php usr/share/ontowiki/application application/classes usr/share/ontowiki/application diff --git a/debian/ontowiki-common.postinst b/debian/ontowiki-common.postinst index 253713645..78f73ff08 100755 --- a/debian/ontowiki-common.postinst +++ b/debian/ontowiki-common.postinst @@ -12,6 +12,9 @@ chmod 770 /usr/share/ontowiki/extensions chmod 770 /var/log/ontowiki chmod 770 /var/cache/ontowiki +# enable the rewrite base +sed 's/#RewriteBase/RewriteBase/' -i /usr/share/ontowiki/.htaccess + #DEBHELPER# echo "---- ending postinst $@"