Welcome Guest, Not a member yet? Register   Sign In
DBlog v1.8: Out now! - Demo and Documentation included!
#21

[eluser]davidbehler[/eluser]
It's been a while but I have finally finished version 1.5 of DBlog!
New features:
- Multi-language support
- Galleries

Changelog version 1.5:
Added support for custom 404 error (thx to louis http://ellislab.com/forums/viewthread/109430/ for providing the solution)
- application/errors/error_404.php
- application/views/*/system_404.php
- application/config/routes.php
Removed admin folder for each design, the views for administration are now in _admin folder. That way changes to the administration don't have to be done in every design
- application/models/admin/config_model.php
- application/controllers/admin/*.php
- application/views/_admin/*.php
- application/views/*/admin (deleted)
- images/styles/_admin/*
- images/styles/*/admin (deleted)
Updated some controllers to show 404 errors instead of redirecting to post/overview
- application/controllers/post.php
- application/controllers/search.php
- application/controllers/tag.php
- application/controllers/archive.php
- application/controllers/category.php
- application/controllers/file.php
- application/controllers/page.php
Fixed a typo in class name
- application/controllers/post.php
- application/controllers/search.php
- application/controllers/tag.php
- application/controllers/archive.php
- application/controllers/category.php
- application/controllers/file.php
- application/controllers/page.php
- application/controllers/start.php
- application/controllers/system.php
- application/libraries/MY_Controller.php
Fixed a potential bug that would increase download count even though the file was requested by a robot that followed the mirror link
- application/controllers/file.php
Multi-language support for the front-end
- application/views/*/*.php
- application/libraries/MY_Pagination.php
- application/libraries/MY_Language.php
- application/models/common_model.php
- application/controllers/archive.php
- application/controllers/category.php
- application/controllers/file.php
- application/controllers/page.php
- application/controllers/post.php
- application/controllers/search.php
- application/controllers/system.php
- application/controllers/tag.php
- application/config/form_validation.php
- application/config/autoload.php
- application/language/*/*.php
- available languages so far are english and german
Small changes to the admin navigation
- application/views/_admin/navigation.php
Added galleries
- application/views/_admin/navigation.php
- CREATE TABLE IF NOT EXISTS `gallery` (
`gallery_id` bigint(20) NOT NULL auto_increment,
`gallery_title` varchar(100) NOT NULL,
`gallery_is_public` tinyint(1) NOT NULL,
PRIMARY KEY (`gallery_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
- CREATE TABLE IF NOT EXISTS `picture` (
`picture_id` bigint(20) NOT NULL auto_increment,
`picture_title` varchar(100) NOT NULL,
`picture_file_name` varchar(255) NOT NULL,
`picture_gallery_id` bigint(20) NOT NULL,
`picture_thumb_file_name` varchar(255) NOT NULL,
PRIMARY KEY (`picture_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
- CREATE TABLE IF NOT EXISTS `post_gallery` (
`post_gallery_id` bigint(20) NOT NULL auto_increment,
`post_gallery_post_id` bigint(20) NOT NULL,
`post_gallery_gallery_id` bigint(20) NOT NULL,
PRIMARY KEY (`post_gallery_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
- INSERT INTO `right` (`right_id` ,`right_name` ,`right_title`) VALUES (NULL , 'can_manage_galleries', 'Can manage galleries');
- application/controllers/admin/gallery.php
- application/models/admin/gallery_model.php
- application/views/_admin/gallery_overview.php
- application/views/_admin/gallery_add.php
- application/views/_admin/gallery_edit.php
- application/views/_admin/picture_edit.php
- application/config/form_validation.php
- application/config/dblog_config.php
- temp
- CHMOD 777
- images/gallery
- CHMOD 777
- application/config/form_validation.php
- application/config/autoload.php
- application/views/_admin/post_edit.php
- application/views/_admin/post_add.php
- application/views/_admin/config_edit.php
- application/controllers/admin/post.php
- application/models/admin/post_model.php
- application/models/post_model.php
- application/libraries/MY_Model.php
- application/config/routes.php
- application/controllers/gallery.php
- application/models/gallery_model.php
- application/views/*/system_css.php
- application/views/*/index.php
- application/views/*/post_view.php
- js/scriptaculous.js
- js/lightwindow.js (Thanks to Kevin Miller http://stickmanlabs.com/lightwindow)
- images/styles/*/arrow-down.gif
- images/styles/*/arrow-up.gif
- images/styles/*/prevlabel.gif
- images/styles/*/nextlabel.gif
- images/styles/*/black.png
- images/styles/*/black-70.png
Added a pic of the moment (short Potm) module
- appliction/views/*/index.php
- application/modules/Potm.php
Adjusted the structure of the sidebar by changing some css styles and html for the standard design
- application/views/standard/system_css.php
- application/views/standard/sidebar.php
Increase version number
- application/config/dblog_version.php

Further info on the new features and changes can be found in my blog!

You can download the new version from here!

Greet
waldmeister


Messages In This Thread
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 02:25 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 06:11 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 06:51 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 07:42 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 08:44 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 08:59 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 01:03 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-11-2009, 04:46 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-15-2009, 04:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-09-2009, 05:20 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-11-2009, 11:41 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-13-2009, 11:00 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 01:29 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 04:32 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 04:40 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 05:01 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 06:12 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 01:18 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 01:44 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 05:03 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-24-2009, 04:46 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-25-2009, 04:16 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 08:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 10:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 06:56 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 12:29 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 01:10 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 01:58 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 04:17 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 06:50 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 04:30 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-08-2009, 05:19 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-28-2009, 05:22 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-02-2009, 02:54 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-13-2009, 10:24 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-29-2009, 02:18 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-29-2009, 04:31 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:31 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:38 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:50 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 02:01 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 02:05 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 11-05-2009, 08:16 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 11-08-2009, 09:05 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 08:41 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 09:55 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 11:36 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 08:53 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 08:56 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 07:00 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 02:36 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 02:47 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 04:41 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 04:46 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-28-2011, 09:52 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-29-2011, 01:33 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-29-2011, 02:08 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2013, 11:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB