Commit Graph

1173 Commits (38e19d5d9a0676f6f4f86d599dd89640f24e94dc)

Author SHA1 Message Date
joey 38e19d5d9a web commit by BradRoberts 2006-11-10 18:15:41 +00:00
joey 321083df4d web commit by EthanGlasserCamp: wikify 2006-11-10 08:34:21 +00:00
joey e47a282989 web commit by BradRoberts 2006-11-10 08:26:38 +00:00
joey ef3021c403 web commit by BradRoberts 2006-11-10 08:14:52 +00:00
joey 96eb9bb3fa * Work around a strange bug in CGI::FormBuilder 3.0401 that makes
FORM-SUBMIT unusable on customised formbuilder templates. For now,
  hardcode the submit buttons in editpage.tmpl instead of using the
  template variable, which is ok, since the buttons are static.
2006-11-10 07:46:41 +00:00
joey c16fd3d71f response 2006-11-08 21:06:35 +00:00
joey 35ee7e44a6 * Make sure to check for errors from every eval. 2006-11-08 21:03:33 +00:00
joey dd2ce6e6a0 web commit by joey: responses 2006-11-08 20:58:07 +00:00
joey 29b75a1e8e update 2006-11-08 20:46:20 +00:00
joey 680e06e52b this is really a todo item, not a bug 2006-11-08 20:44:32 +00:00
joey 299455ab27 response 2006-11-08 20:43:36 +00:00
joey 6e1986cf12 * Patch from Ethan Glasser Camp to add a skip option to the inline plugin. 2006-11-08 20:39:48 +00:00
joey 68f84e12f2 web commit by EthanGlasserCamp: This is probably better. 2006-11-08 20:19:49 +00:00
joey b48beb9e80 web commit by EthanGlasserCamp 2006-11-08 20:11:48 +00:00
joey 4010e641c8 web commit by EthanGlasserCamp: exactly what it sounds like 2006-11-08 20:10:44 +00:00
joey 0617793bf6 web commit by EthanGlasserCamp: Oops, this is what the patch actually says! 2006-11-08 06:45:05 +00:00
joey a2766fa0d7 web commit by EthanGlasserCamp: use diff -ur so I can apply this easier in the future 2006-11-08 06:42:08 +00:00
joey 11479d71bc web commit by EthanGlasserCamp: use a real patch format rather than just doing svn diff 2006-11-08 06:05:45 +00:00
joey 54551d3866 web commit by JoshTriplett: Canonical feed location? 2006-11-06 22:44:34 +00:00
joey 4175b35d38 web commit by JoshTriplett 2006-11-06 22:27:15 +00:00
joey 0961a6d05e web commit by JoshTriplett: Fix links which just had [homepage] or [blog] in the text to include the surrounding attribution, and change the ion link from HTML to markdown 2006-11-06 21:55:06 +00:00
joey 7ccbbe1b01 web commit by JoshTriplett: Add the Sparse wiki. 2006-11-06 21:45:55 +00:00
joey 2e4cefdc3e add news item for ikiwiki 1.32 2006-11-03 19:49:08 +00:00
joey dc52eb68a8 move :-) to correct location 2006-11-03 19:47:27 +00:00
joey 3f8165963d web commit by KyleMacLea 2006-11-01 14:55:17 +00:00
joey bf52bb4c5f web commit by KyleMacLea 2006-11-01 14:53:33 +00:00
joey 369cf45ace * Patch from James Westby to support podcasting, photoblogging, vidcasting,
or what have you, by creating enclosures for non-page items that are
  included in feeds.
2006-11-01 06:45:59 +00:00
joey f8dbe2657c idea 2006-11-01 06:07:54 +00:00
joey e258048197 update 2006-11-01 06:06:07 +00:00
joey 4cac43981e foo 2006-11-01 06:05:08 +00:00
joey 0d666f4a7c done-ish 2006-11-01 06:03:00 +00:00
joey 5a82103526 * Implemented expiry options for aggregate plugin.
* Use precalculated backlinks info when determining if files need an update
  due to a page they link to being added/removed. Mostly significant if
  there are lots of pages.
* Remove duplicate link info when saving index. In some cases it could
  pile up rather badly. (Probably not the best way to deal with this
  problem.)
2006-11-01 05:41:37 +00:00
joey 5a9064dea8 add pointer to backport 2006-10-31 17:30:50 +00:00
joey 687cbdbd0b web commit by jh 2006-10-30 17:51:46 +00:00
joey 8a9056d6e5 revamp css market, allow selecting stylesheets on the fly in web browser 2006-10-30 02:00:38 +00:00
joey d8b4819d88 another update 2006-10-29 16:58:19 +00:00
joey bba10bb898 update 2006-10-28 23:42:43 +00:00
joey 4109ef94fd * Add a default stylesheet entry for the pagecloud.
* Add examples page with some examples of things that can be done using
  ikiwiki, like a weblog. The examples can be copied into a user's wiki
  for a quick start, without needing to learn everything about how to put
  them together.
2006-10-28 23:41:39 +00:00
joey f6f87c14ab updated again 2006-10-28 22:11:09 +00:00
joey 9890790fa5 * Now that links are calculated in a separate pass, it can also
* Stylish update to the ikiwiki logo, thanks to Recai Oktaş and Selçuk
  Erdem.
2006-10-28 17:18:50 +00:00
joey 994c242994 update 2006-10-28 05:45:56 +00:00
joey c4e8a8c62f update 2006-10-28 05:10:13 +00:00
joey db3b72c482 instead of over and over. Typical speedup is ~4x. Max possible speedup:
8x.
* Add "scan" parameter to hook(), which is used to make the hook be called
  during the scanning pass, as well as the render pass. The meta and tag
  plugins need to use the new scan parameter, so will any others that modify
  %links.
* Now that links are calculated in a separate pass, it can also 
  precalculate backlinks in one pass, which is O(N^2) instead of the
  previous code that was O(N^3). A very nice speedup for wikis with lots
  (thousands) of pages.
2006-10-28 05:07:56 +00:00
joey 49bf877701 * Add a separate pass to find page links, and only render each page once,
instead of over and over. This is up to 8 times faster than before!
  (This could have introduced some subtle bugs, so it needs to be tested
  extensively.)
2006-10-28 03:27:10 +00:00
joey 05fe79b487 add news item for ikiwiki 1.31 2006-10-28 03:17:52 +00:00
joey b6509c74a9 * Add basic spam fighting tool for admins: An admin's prefs page now allows
editing a list of banned users who are not allowed to log in.
2006-10-28 00:35:33 +00:00
joey ed463de21f revert spammer 2006-10-27 23:48:38 +00:00
joey dcadf11388 web commit by shoesorder 2006-10-27 23:22:36 +00:00
joey bd8390018a web commit by shoesorder 2006-10-27 23:21:39 +00:00
joey ee3878f8ad web commit by shoesorder 2006-10-27 23:20:24 +00:00