You can subscribe to this list here.
| 2007 |
Jan
|
Feb
(5) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(21) |
Aug
(1) |
Sep
|
Oct
(6) |
Nov
(35) |
Dec
(23) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(4) |
Feb
(1) |
Mar
(11) |
Apr
(6) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(2) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2010 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <bug...@kr...> - 2010-01-07 18:18:09
|
http://bugzilla.krangcms.com/show_bug.cgi?id=44 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Comment #3 from dka...@er... 2010-01-07 13:18 ------- Link to the full-screen technicolorized diff :-) http://bugzilla.krangcms.com/attachment.cgi?id=13&action=diff -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2010-01-07 18:15:33
|
http://bugzilla.krangcms.com/show_bug.cgi?id=44 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12 is|0 |1 obsolete| | -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2010-01-07 18:15:06
|
http://bugzilla.krangcms.com/show_bug.cgi?id=44 ------- Comment #2 from dka...@er... 2010-01-07 13:14 ------- Created an attachment (id=13) --> (http://bugzilla.krangcms.com/attachment.cgi?id=13&action=view) Krang-Conf.patch Added _conf() methods to enable subclasses to access the underlying Config::ApacheFormat object, and _get() and block() convenience methods to expose its most commonly needed accessor methods -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2010-01-06 21:16:03
|
http://bugzilla.krangcms.com/show_bug.cgi?id=44 ------- Comment #1 from dka...@er... 2010-01-06 16:15 ------- Created an attachment (id=12) --> (http://bugzilla.krangcms.com/attachment.cgi?id=12&action=view) Krang-Conf.patch The patch touches the following files (obviously most are just the the updated BEGIN blocks in scripts) lib/Krang/Conf.pm conf/krang-preload.pl bin/krang_ftpd bin/krang_siteserverctl bin/krang_extract_subset bin/krang_scheduled bin/krang_delete bin/krang_addon_framework bin/krang_upload_templates bin/krang_template_diff bin/krang_create_story bin/krang_addon_uninstaller bin/krang_backup bin/krang_publish bin/krang_import bin/krang_expunge bin/krang_clear_minified_assets bin/krang_smoke_test bin/krang_bench bin/krang_export bin/krang_ctl bin/krang_upload_media bin/krang_useradd bin/krang_to_utf8 bin/krang_tmp_cleaner bin/krang_template_patch bin/krang_info bin/krang_ftpctl bin/krang_egrapher bin/krang_schedulectl bin/krang_passwd bin/krang_addon_installer bin/krang_load_skin bin/krang_addon_build bin/krang_category_rename bin/krang_addon_dist bin/krang_combine_js bin/krang_uninstall bin/krang_unpublish bin/krang_floodfill bin/krang_deploy_templates bin/krang_kds_retarget bin/krang_test bin/krang_convert_story_type bin/krang_prune_versions bin/krang_charset_convert_data bin/krang_charset_convert_tables bin/krang_apachectl bin/krang_unlock_user bin/krang_addon_upgrade_test bin/krang_objects_saved_since lang/bin/krang_lang_installer lang/bin/krang_localize_templates lang/bin/krang_lang_uninstaller lang/bin/krang_lang_dist lang/bin/krang_missing_localizations lang/bin/krang_make_js_loc htdocs/poortext/bin/krang_make_poortext htdocs/preview_editor/bin/krang_combine_preview_editor_js -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2010-01-06 21:13:56
|
http://bugzilla.krangcms.com/show_bug.cgi?id=44 Summary: Extend Krang::Conf with new directives in an addon Product: Krang Version: trunk Platform: PC OS/Version: Windows Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: Laz...@kr... ReportedBy: dka...@er... QAContact: kra...@li... This is a proposed enhancement to Krang::Conf that allows it to be subclassed in an addon to define new directives and block names that can be added to krang.conf, and accessible via pkg('Conf') object, alongside the like core krang conf directives. The changes to Krang.conf which were needed to allow this were minimal and not disruptive, consisting just of making the lexical package arrays, @VALID_DIRECTIVES and friends, into subs instead, and moving the two bare function calls in the file (_load() and _check()) into the import() method where they can in turn call subclass's methods. The challenging part of making this work was finding *all* the command-line scripts that have the "stock krang BEGIN block" that includes the line: # load Krang::Conf (don't need to load Krang here because we won't # be slinging elements) eval { require Krang::Conf }; } (note the hard-coded Krang::Conf package name -- d'oh!) and fixing those so they load the Conf pakage via Krang::ClassLoader instead, allowing the Addon system to get a crack at it: eval q{ use ClassLoader 'Conf' }; I'm still doing some final testing, but I wanted to make this patch available for anyone who's interested in reviewing it, and welcome feedback! -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-10-29 18:13:06
|
http://bugzilla.krangcms.com/show_bug.cgi?id=43 Summary: FTP access to templates checked-out by others Product: Krang Version: 3.05 Platform: PC OS/Version: Windows Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: Laz...@kr... ReportedBy: dka...@er... QAContact: kra...@li... In Krang 3.05, if user A attempts to modify a template that is checked out by user B, user A is apparently allowed to do so. Krang's FP server accepts the upload without error, but silently ignores the change. Expected behavior: When user A attempts to uploadchanges to a template that is checked out by user B, user A's FTP client should report a write permission denied error and the upload should fail. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-10-29 18:06:11
|
http://bugzilla.krangcms.com/show_bug.cgi?id=27 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME ------- Comment #1 from nwe...@er... 2007-12-18 18:46 ------- Hi Dave - Are you able to recreate this on the trunk? I haven't been able to - using Firefox 2.0.0.11 - and am wondering if the bug might have been fixed along the way... If not, I will investigate further! Thanks - Noam ------- Comment #2 from nwe...@er... 2007-12-18 18:47 ------- Hi Dave - Are you able to recreate this on the trunk? I haven't been able to - using Firefox 2.0.0.11 - and am wondering if the bug might have been fixed along the way... If not, I will investigate further! Thanks - Noam ------- Comment #3 from dka...@er... 2009-10-29 14:06 ------- You, works for me now in FF2, 3 and 3.5 too -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-24 13:41:20
|
http://bugzilla.krangcms.com/show_bug.cgi?id=42 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Comment #1 from dka...@er... 2009-07-24 09:41 ------- Fixed in svn rev #6198 by rewriting as: for my $row (@{$row_refs}) { and then using $row->[0] in side the loop instead of $row_refs->[$i][0] so the loop doesn't loop at all unless the query returns one or more rows, as expected. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-24 13:07:04
|
http://bugzilla.krangcms.com/show_bug.cgi?id=42 Summary: Scheduler errors from _expire_sessions() Product: Krang Version: 3.05 Platform: PC OS/Version: Windows Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: dka...@er... ReportedBy: dka...@er... QAContact: kra...@li... In krang 3.05 I'm seeing the following in the logs every 5 minutes: [info] Krang::Schedule::Daemon->scheduler_pass('cms.portfolio.com'): 1 jobs found. Working.. Krang::Schedule::Daemon->_child_work('cms.portfolio.com'): PID 20950 encountered error below with Schedule 2 - WILL KEEP TRYING EVERY 300 SEC "Can't use string ("0") as an ARRAY ref while "strict refs" in use at /home/portfolio/krang/lib/Krang/Schedule/Action/clean.pm line 197." Looks like a bug in this odd construct: for $i (0 .. $#{@$row_refs}) { on line 197 of Krang::Schedule::Action::clean-> _expire_sessions() which throws the exception when $row_refs is an arrayref containing zero elements (as it is when there are no sessions to expire (which is usually)) -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-15 06:14:57
|
http://bugzilla.krangcms.com/show_bug.cgi?id=41 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED Summary|two krang_install errors, an|two krang_install errors, |one warning |and one warning ------- Comment #2 from dka...@er... 2009-07-15 02:14 ------- Fixed in svn rev 6191 -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-15 00:08:24
|
http://bugzilla.krangcms.com/show_bug.cgi?id=41 ------- Comment #1 from dka...@er... 2009-07-14 20:08 ------- Created an attachment (id=11) --> (http://bugzilla.krangcms.com/attachment.cgi?id=11&action=view) bug-1-patch.diff proposed patch -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-15 00:02:25
|
http://bugzilla.krangcms.com/show_bug.cgi?id=41 dka...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2009-07-15 00:02:14
|
http://bugzilla.krangcms.com/show_bug.cgi?id=41 Summary: two krang_install errors, an one warning Product: Krang Version: 3.05 Platform: PC OS/Version: Windows Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: Laz...@kr... ReportedBy: dka...@er... QAContact: kra...@li... krang install always throws the following two errors: Setting #! on scripts to /usr/bin/perl can't find shebang line in krang/htdocs/xinha/plugins/SpellChecker/spell-check-logic.cgi can't find shebang line in krang/htdocs/xinha/plugins/ContextMenu/1.pl Additionally one warning is issued when installing from a platform-specific binary distribution: Can't stat /home/dkaufman/krang/bench: No such file or directory at bin/krang_install line 666 -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-07-24 19:58:45
|
http://bugzilla.krangcms.com/show_bug.cgi?id=40 Summary: url collision possible between story and media Product: Krang Version: 3.02 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: Laz...@kr... ReportedBy: bra...@pl... QAContact: kra...@li... I was able to create an article with a slug of 'iran', and then was able to upload an image file named 'iran' (without extension). This prevents the story from publishing (to pub or to preview) b/c there is already a file at the path when it tries to create the directory for the story. This error is displayed when attempting to preview the story: A file-system error has occured attempting to write to '/tmp/test_client_preview/iran'. Please contact operations and request that they remedy the problem. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-04-18 20:43:01
|
http://bugzilla.krangcms.com/show_bug.cgi?id=39 je...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Comment #1 from je...@er... 2008-04-18 16:42 ------- This isn't a Krang issue. Krang doesn't run the search engine for these sites. The fact that all these sites have the same problem is because the search engine was made by the same team of developers (same company). Krang does not host search, nor publish particular search templates. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-04-08 15:35:45
|
http://bugzilla.krangcms.com/show_bug.cgi?id=38 ------- Comment #1 from ali...@pl... 2008-04-08 11:19 ------- Created an attachment (id=9) --> (http://bugzilla.krangcms.com/attachment.cgi?id=9&action=view) File that fails -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-04-08 15:35:40
|
http://bugzilla.krangcms.com/show_bug.cgi?id=38 ------- Comment #2 from ali...@pl... 2008-04-08 11:20 ------- Created an attachment (id=10) --> (http://bugzilla.krangcms.com/attachment.cgi?id=10&action=view) File that succeeds -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-04-08 15:30:33
|
http://bugzilla.krangcms.com/show_bug.cgi?id=38 ali...@pl... changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version|Mac OS |All -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-04-08 15:28:35
|
http://bugzilla.krangcms.com/show_bug.cgi?id=38 Summary: Media: Bulk Upload does not support files with apostrophes in the name Product: Krang Version: trunk Platform: Macintosh OS/Version: Mac OS Status: NEW Severity: normal Priority: P3 Component: Code AssignedTo: Laz...@kr... ReportedBy: ali...@pl... QAContact: kra...@li... Users are trying to bulk upload ZIP files with apostrophes in the name. Krang is rejecting them with the error "Problems opening archive file. Please make sure it is a valid zip, tar, or stuffit file." It is a valid file, though; if I rename it, the file uploads smoothly. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-03-10 20:01:53
|
http://bugzilla.krangcms.com/show_bug.cgi?id=36 nwe...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Comment #5 from nwe...@er... 2008-03-10 16:01 ------- Jesse - Per our discussion, I've modified the v3 upgrade script to handle this case (see checkin 4974 on the v3.01 branch), and will post a message to the devlist re: Krang's case-insensitivity. Noam -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-03-10 18:40:40
|
http://bugzilla.krangcms.com/show_bug.cgi?id=37 nwe...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Comment #2 from nwe...@er... 2008-03-10 14:40 ------- Jesse - This has been fixed, and checked in to the v3.01 and v3.02 branches. Noam -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-03-07 15:48:17
|
http://bugzilla.krangcms.com/show_bug.cgi?id=36 nwe...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Comment #4 from nwe...@er... 2008-03-07 10:48 ------- Thanks, Jesse - This afternoon I'll investigate whether it's an issue in the dupe-url SQL or something more specific to the slug/cat fix. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-03-07 15:43:43
|
http://bugzilla.krangcms.com/show_bug.cgi?id=36 ------- Comment #3 from je...@er... 2008-03-07 10:43 ------- (In reply to comment #1) > Jesse- You are suggesting a modification to the SQL query used to determine if > stories are duplicates, correct? Would this cause any unintended consequences > elsewhere (if there are two stories who share the same URL minus case > differences)? i.e. do any SELECT statements elsewhere need to be changed as > well? Noam I don't know if this can/should be done in SQL. All I know is that I stumbled on this last night while upgrading a large site: The users had created stories expressly for the purpose of redirecting to based on URL case. E.g.: http://foo.com/bar/bat ...Redirected to... http://foo.com/bar/BAT During upgrade, this caused the function which moved stories which conflict with categories to die when it tried to change the URL. -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |
|
From: <bug...@kr...> - 2008-03-07 15:38:50
|
http://bugzilla.krangcms.com/show_bug.cgi?id=36 nwe...@er... changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|Laz...@kr... |nwe...@er... ------- Comment #2 from nwe...@er... 2008-03-07 10:38 ------- Oops - didn't mean to reassign -- Configure bugmail: http://bugzilla.krangcms.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. |