]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
Merge branch 'master' of ssh://git.kitenet.net/srv/git/ikiwiki.info
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 6 Nov 2007 00:33:56 +0000 (19:33 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 6 Nov 2007 00:33:56 +0000 (19:33 -0500)
doc/bugs/search_for_locale_data_in_the_installed_location.mdwn [new file with mode: 0644]
doc/news/server_speed.mdwn
doc/plugins/aggregate.mdwn
doc/plugins/contrib/gallery/discussion.mdwn

diff --git a/doc/bugs/search_for_locale_data_in_the_installed_location.mdwn b/doc/bugs/search_for_locale_data_in_the_installed_location.mdwn
new file mode 100644 (file)
index 0000000..ad379da
--- /dev/null
@@ -0,0 +1,15 @@
+It seems like gettext only searches for locale information in /usr/share/locale, by default. I installed ikiwiki into /usr/local, therefore the locale information wasn't found. This patch fixes the issue:
+
+    --- a/IkiWiki.pm
+    +++ b/IkiWiki.pm
+    @@ -1057,6 +1057,7 @@ sub gettext { #{{{
+                                    $gettext_obj=undef;
+                                    return shift;
+                            }
+    +                       $gettext_obj->dir("$installdir/share/locale/");
+                    }
+                    return $gettext_obj->get(shift);
+            }
+
+[[tag patch]]
+-- [[ThomasBleher]]
\ No newline at end of file
index e4cd189e96cd46b5e7e75fb2d6b522f30d430027..56f1d15ab7d7103fba403af82938f9f0e44f5250 100644 (file)
@@ -1,7 +1,7 @@
 Quick poll: Do you feel that ikiwiki is fast enough on this server, or
 should I move it to my much beefier auxillary server?
 
-[[poll 27 "It's fast enough" 4 "It's too slow!" 3 "No opinion"]]
+[[poll 33 "It's fast enough" 4 "It's too slow!" 4 "No opinion"]]
 
 If you have specifics on performance issues, you might mention them on the
 [[discussion]] page.
index 8b1abcd61124bd537aa72d854e8c25b96dfe0a9b..398da4b5e60a7ebf6448ee683bf281d188ebb4fc 100644 (file)
@@ -8,7 +8,7 @@ Aggregate a feed as follows
        feedurl="http://example.com/index.rss"
        url="http://example.com/" updateinterval="15"]]
 
-That example aggregates posts from the expecified RSS feed, updating no
+That example aggregates posts from the specified RSS feed, updating no
 more frequently than once every 15 minutes, and puts a page per post under
 the example/ directory in the wiki.
 
index 60b8fde0f83029fb5c2331088a7a3486f00983c5..37fa6f884a829afaedf9755a89df430c32ab713f 100644 (file)
@@ -1,3 +1,5 @@
+# Adaptation to Newer Versions of ikiwiki
+
 I tried using this plugin, but to no success so far.  I used *gallery* git branch,
 rebased it onto the *origin/master*, built a Debian package and installed that one.
 
@@ -29,3 +31,15 @@ New version updated at SVN REPO : http://ned.snow-crash.org:8080/svn/ikiwiki-gal
 
 --[[arpitjain]]
 
+
+# Bug With Referring to *js* and *css* Files
+
+In the generated files `gallery/index/index.html` and `gallery/index/*/gallery_*`
+it should not be referred to `/js` but to `../../js` and `../../../js`, respectively.
+Likewise for `/css`.
+
+
+# All Thumbnails on One Page
+
+Could `rows="0"` be used to state that all thumbnails should be put on the same page,
+no matter how much there are?