Jacques Distler
|
10b0561aca
|
Category lists and WikiReferences restrict to current Web.
Fix one sanitization test.
|
2007-09-28 03:57:52 +00:00 |
|
Matt MacGillivray
|
36b86a9d41
|
Removed deprecation errors for rails 1.2.3. Corrected test case failures as a result of updated features and functionality
|
2007-05-07 22:46:00 +00:00 |
|
Matthias Tarasiewicz
|
49032a99c6
|
svn:external rails updated to 1.2.2
fixed ticket #372 typo in db-query
sqlite3-ruby updated to 1.2.1
|
2007-02-08 22:01:36 +00:00 |
|
Matthias Tarasiewicz
|
1877f66f17
|
big update to the web_list - statistics: last update, last document, created or revised; plus css updates to make small fonts look better in firefox
|
2007-01-18 17:57:16 +00:00 |
|
Matthias Tarasiewicz
|
2e558d5222
|
fixed the correct display of authors per web. added singular/plural for authors and pages. css optimizations
|
2007-01-18 13:33:52 +00:00 |
|
Alexey Verkhovsky
|
64313ca208
|
Fixing FileController#import; sort of works, but fails on some interesting tests
|
2006-03-23 07:14:51 +00:00 |
|
Alexey Verkhovsky
|
d6fedc7f84
|
Converting linefeeds to Unix-style
|
2006-03-19 21:49:53 +00:00 |
|
Alexey Verkhovsky
|
a2cb920489
|
Fixed All Pages with a category
|
2005-11-14 11:07:14 +00:00 |
|
Alexey Verkhovsky
|
614a48c6ff
|
Exclude links to files and pages from All Pages (so that they don't show up in Wanted Pages etc).
|
2005-11-14 11:00:46 +00:00 |
|
Alexey Verkhovsky
|
0b1a80a852
|
[BUILD STILL BROKEN] File uploads roughly speaking work (to about same extent as in 0.10)
|
2005-11-14 08:38:37 +00:00 |
|
Alexey Verkhovsky
|
8bdee631f6
|
[BREAKS BUILD] Some work on File uploads, half-done, committing as a backup
|
2005-11-13 13:37:47 +00:00 |
|
Alexey Verkhovsky
|
af25237a90
|
Render HTML pages for ExportHTML 'manually'
|
2005-10-27 05:29:24 +00:00 |
|
Alexey Verkhovsky
|
223a1f9de3
|
Speeding up some stuff
|
2005-09-27 13:46:02 +00:00 |
|
Alexey Verkhovsky
|
c4f593151e
|
[FIXES BUILD] Fixed categories behavior and added id generation in import_storage. Something is still wrong with orphaned pages though
|
2005-09-11 16:49:08 +00:00 |
|
Alexey Verkhovsky
|
32d238098e
|
Taking care of svn adds and svn deletes for the last 24 hours or so. Boo on me!
|
2005-09-11 14:03:08 +00:00 |
|
Alexey Verkhovsky
|
ac819d4d68
|
BREAKS BUILD: all pages etc are much faster, but categories functionality is broken (it was responsible for calling the renderer once per every page on All Pages)
|
2005-09-11 09:34:41 +00:00 |
|
Alexey Verkhovsky
|
541a5d3994
|
Deleted all references to PageRenderer from PageSet selectors; using wiki_references instead
|
2005-09-11 08:05:19 +00:00 |
|
Alexey Verkhovsky
|
6ff74f6b5a
|
Update wiki_references to a newly created page from 'W' to 'L'
|
2005-09-11 06:15:59 +00:00 |
|
Alexey Verkhovsky
|
cd68db01d2
|
Store wiki references found during rendering
|
2005-09-11 05:44:34 +00:00 |
|
Alexey Verkhovsky
|
70fa15e3f3
|
Continue extracting URL generation logic from model classes
|
2005-09-10 11:07:40 +00:00 |
|
Alexey Verkhovsky
|
7e500dfe57
|
Controllers create renderer objects and pass them on to page.revise and page.rollback methods
|
2005-09-10 06:12:57 +00:00 |
|
Alexey Verkhovsky
|
4838f6e684
|
Deleted the last of the rendering logic from Revision (making it a totally anemic entity, by the way)
|
2005-09-09 20:40:35 +00:00 |
|
Alexey Verkhovsky
|
427f989d69
|
Extacted rendering logic from the model
|
2005-09-09 05:31:27 +00:00 |
|
Alexey Verkhovsky
|
acfae2818c
|
Rmoved a redundant require
|
2005-09-09 03:32:54 +00:00 |
|
Alexey Verkhovsky
|
fa0cf9032f
|
Extracted link generation from Web into a separate class
|
2005-09-09 03:31:49 +00:00 |
|
Ben Bleything
|
b29c59e470
|
Line ending cleanup. Most of these are svn propsets which should make
the files check out appropriately in the future. The three files in
app/models had inconsitent line endings, so they had to be fixed by
hand.
|
2005-08-15 19:17:32 +00:00 |
|
Alexey Verkhovsky
|
06959ab278
|
Moved pretty date formatting from revision to the main view helper, where this presentation logic obviously belongs
|
2005-08-14 23:35:10 +00:00 |
|
Alexey Verkhovsky
|
5b075ca338
|
Renamed revised_on to revised_at everywhere (for consistency)
|
2005-08-14 23:27:55 +00:00 |
|
Alexey Verkhovsky
|
d24cf7c8e1
|
Fixed continuous revision check
|
2005-08-14 23:09:10 +00:00 |
|
Alexey Verkhovsky
|
052754b068
|
Dropped number from revision table. Also dropped timestamp. We will rely on autoincremented ID for sorting, and will for now store the time of last edit of the revision in revised_at. Later we will refactor content into a separate table (so as not to load the whole 300 kb of text and cached HTML every time we need page.revisions in code). Rake tests all pass, but watir tests indicate that some revision traversing links are still broken
|
2005-08-14 22:26:54 +00:00 |
|
Alexey Verkhovsky
|
476d7810f6
|
Added Revision.timestamp attribute, which is a timestamp to the precision of msec. Intention is to get rid of the revision.number and use this one for sotrting etc. The problem with created_at / updated_at in this role is that trhey have precision of seconds, which is not good enough for some of the purposes.
|
2005-08-14 18:58:36 +00:00 |
|
Alexey Verkhovsky
|
b4ae0b3065
|
Moving back some model classes to where they belong. Model classes need not map to database entities to be model classes
|
2005-08-14 04:42:19 +00:00 |
|
Rick Okin
|
26c046cdfa
|
move to AR
|
2005-08-09 02:20:28 +00:00 |
|
Rick Okin
|
e4ecb406bf
|
renamed model directory
|
2005-08-09 01:18:00 +00:00 |
|
Alexey Verkhovsky
|
6d8190c096
|
Moved old tests and app/model out of the way
|
2005-08-02 07:59:22 +00:00 |
|
Alexey Verkhovsky
|
adc6b005d5
|
Just checking my SVN access
|
2005-07-31 00:27:31 +00:00 |
|
Alexey Verkhovsky
|
207737aa22
|
Fixed a subtle incompatibility with older storages. Madeleine must die
|
2005-07-30 06:39:34 +00:00 |
|
Alexey Verkhovsky
|
79eb882a31
|
Avoid autolinking Markdown URIs (ticket:177)
|
2005-06-09 20:24:14 +00:00 |
|
Alexey Verkhovsky
|
ebe0af1dfc
|
Better handling of permissions for re-uploading a file that already exists (ticket:163)
|
2005-06-09 20:05:16 +00:00 |
|
Alexey Verkhovsky
|
04a8f80273
|
Further tweaking of markup error handling code
|
2005-05-29 18:40:25 +00:00 |
|
Alexey Verkhovsky
|
9abb4f575a
|
Refactoring page creation code [dm1]
|
2005-05-12 01:07:24 +00:00 |
|
Alexey Verkhovsky
|
f6a3b88693
|
Fix for multiple includes on the same page; ignoring leading/trailing whitespace in WikiLinks [both by dm1]
|
2005-05-12 00:56:57 +00:00 |
|
Alexey Verkhovsky
|
a14430a285
|
Multiline <nowiki> tag
|
2005-05-06 01:02:30 +00:00 |
|
Alexey Verkhovsky
|
f77cf37f8e
|
Assertion against nil arguments in Page constructor - one guy sent me a storage, containing a page with nil name
|
2005-05-05 12:24:02 +00:00 |
|
Alexey Verkhovsky
|
c0e5673cc5
|
Fixed an incompatibility with old storages; ticket:133
|
2005-05-02 01:43:44 +00:00 |
|
Alexey Verkhovsky
|
e20e529960
|
Corrected a typo in a comment
|
2005-05-01 03:24:06 +00:00 |
|
Alexey Verkhovsky
|
598e4f272d
|
Mixed mode that doesn't break on images
|
2005-05-01 02:47:57 +00:00 |
|
Alexey Verkhovsky
|
5c97cc593e
|
[RESTORES BUILD] RedCloth does not support hard breaks in mixed mode
|
2005-04-10 17:57:24 +00:00 |
|
Alexey Verkhovsky
|
a251b658f1
|
[BUILD BROKEN] BlueCloth the original distribution has some bugs. Digged out a patched-up version from Instiki 0.9
|
2005-04-10 17:48:50 +00:00 |
|
Alexey Verkhovsky
|
6f36e53290
|
BlueCloth is back with vengeance
|
2005-04-10 17:10:11 +00:00 |
|