My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Nov 11, 2009
    Install Wiki page commented on by Alex.Nerten   -   Are you planning to update the source to the state as on site stikked.com ?
    Are you planning to update the source to the state as on site stikked.com ?
  • Aug 30, 2009
    stikked-0.5.4.zip (Stikked 0.5.4) file uploaded by b...@benmcredmond.com   -  
    Labels: Featured Type-Source OpSys-All
    Labels: Featured Type-Source OpSys-All
  • Aug 30, 2009
    issue 9 (Expire Date is always set to 24 days) Status changed by b...@benmcredmond.com   -   This issue was closed by revision r49.
    Status: Fixed
    This issue was closed by revision r49.
    Status: Fixed
  • Aug 30, 2009
    r49 (Fixed issue #9 ) committed by b...@benmcredmond.com   -   Fixed issue #9
  • Aug 29, 2009
    issue 9 (Expire Date is always set to 24 days) commented on by so.rosseland   -   Ben: please update trunk, so the rest of us can resolve this issue
    Ben: please update trunk, so the rest of us can resolve this issue
  • Aug 20, 2009
    issue 16 (Default Expiration?) reported by ghost1...@archlinux.us   -   How do you change the default expiration? I find the default 'keep forever' to be just a bit too long...
    How do you change the default expiration? I find the default 'keep forever' to be just a bit too long...
  • Aug 20, 2009
    issue 14 (No indication that there is a maximum length for paste title...) commented on by ghost1...@archlinux.us   -   Maximum length is easily changable by editing the field length for title in the MySQL database.
    Maximum length is easily changable by editing the field length for title in the MySQL database.
  • Jun 11, 2009
    issue 15 (Add Diff support) reported by yann.richard   -   Add Diff support as languages
    Add Diff support as languages
  • Feb 15, 2009
    issue 14 (No indication that there is a maximum length for paste title...) commented on by perrytrinier   -   That's me too.
    That's me too.
  • Feb 15, 2009
    issue 8 (checkPaste could check whether the paste is expired) commented on by perrytrinier   -   That was actually me, not my wife Michelle!
    That was actually me, not my wife Michelle!
  • Feb 15, 2009
    issue 8 (checkPaste could check whether the paste is expired) commented on by michelletrinier   -   Here's the code again for the modified checkPastes method: function checkPaste($seg=2) { if($this->uri->segment($seg) == ""){ return FALSE; } else { $this->db->where("pid", $this->uri->segment($seg)); $query = $this->db->get("pastes"); if($query->num_rows() > 0) { $paste = $query->row_array(); if ( $paste['expire'] < time() ) { $this->db->delete('pastes',array('pid'=>$paste['pid'])); return FALSE; } else { return TRUE; } } else { return FALSE; } } } I realize that my earlier patch was probably not used because it also contained changes to other methods, that relied on other features etc... I'm new to this, so I didn't consider that the patch should be completely atomic, and not have other dependencies. If you want the checkPaste method to handle deleting, the method above should work, but note that that is copied and pasted from an earlier release of Stikked that I was working on. You may need to make slight changes to be compatible with the current release.
    Here's the code again for the modified checkPastes method: function checkPaste($seg=2) { if($this->uri->segment($seg) == ""){ return FALSE; } else { $this->db->where("pid", $this->uri->segment($seg)); $query = $this->db->get("pastes"); if($query->num_rows() > 0) { $paste = $query->row_array(); if ( $paste['expire'] < time() ) { $this->db->delete('pastes',array('pid'=>$paste['pid'])); return FALSE; } else { return TRUE; } } else { return FALSE; } } } I realize that my earlier patch was probably not used because it also contained changes to other methods, that relied on other features etc... I'm new to this, so I didn't consider that the patch should be completely atomic, and not have other dependencies. If you want the checkPaste method to handle deleting, the method above should work, but note that that is copied and pasted from an earlier release of Stikked that I was working on. You may need to make slight changes to be compatible with the current release.
  • Feb 15, 2009
    issue 14 (No indication that there is a maximum length for paste title...) reported by michelletrinier   -   When creating a new paste, and typing a new title for the paste into the text input, there is no indication to the user that their title will be truncated before it goes to the database. I attempted to create a paste with the title "Test paste to embed (a stikked view)" but in the DB this is "Test paste to embed (a stikked v" . If we are going to have a maximum length for the title, it would be better to add a maxlength attribute to the title input.
    When creating a new paste, and typing a new title for the paste into the text input, there is no indication to the user that their title will be truncated before it goes to the database. I attempted to create a paste with the title "Test paste to embed (a stikked view)" but in the DB this is "Test paste to embed (a stikked v" . If we are going to have a maximum length for the title, it would be better to add a maxlength attribute to the title input.
  • Feb 11, 2009
    issue 8 (checkPaste could check whether the paste is expired) Labels changed by b...@benmcredmond.com   -  
    Labels: Type-Enhancement Type-Defect
    Labels: Type-Enhancement Type-Defect
  • Feb 11, 2009
    issue 12 (Call to a member function on a non-object) Status changed by b...@benmcredmond.com   -   Most likely an autoload + case sensitive file system problem.
    Status: Accepted
    Most likely an autoload + case sensitive file system problem.
    Status: Accepted
  • Feb 11, 2009
    issue 9 (Expire Date is always set to 24 days) Status changed by b...@benmcredmond.com   -   Fixed. Update in 0.6
    Status: Verified
    Fixed. Update in 0.6
    Status: Verified
  • Feb 11, 2009
    issue 11 (download paste is giving me 404 error code) commented on by b...@benmcredmond.com   -   This is weird. I thought I fixed it ;-). Big update coming soon with a lot of behind the scenes stuff changed, hopefully it should be fixed. Working on my dev machine.
    This is weird. I thought I fixed it ;-). Big update coming soon with a lot of behind the scenes stuff changed, hopefully it should be fixed. Working on my dev machine.
  • Feb 11, 2009
    issue 11 (download paste is giving me 404 error code) commented on by the.vbm   -   that route already exist for me ... yet problem still is persistent even on fresh install.
    that route already exist for me ... yet problem still is persistent even on fresh install.
  • Feb 11, 2009
    issue 11 (download paste is giving me 404 error code) commented on by cool2sv   -   Yes, in system/application/config/routes.php just append: $route['view/download/:any'] = 'main/download/'; Can be closed.
    Yes, in system/application/config/routes.php just append: $route['view/download/:any'] = 'main/download/'; Can be closed.

Older

  • Nov 05, 2008
    issue 12 (Call to a member function on a non-object) reported by Demers.Charles   -   What steps will reproduce the problem? 1. Follow install instructions 2. Point to index.php What is the expected output? What do you see instead? PHP Fatal error: Call to a member function on a non-object in /usr/www/pastebin/system/application/controllers/main.php on line 260 What version of the product are you using? On what operating system? Latest version, FreeBSD 6.3, Apache 2.2.9, PHP 5.2.6. Please provide any additional information below. Line 260 reads: $check = $this->pastes->checkPaste(2); If I comment it out, I get this error: 404 Page Not Found The page you requested was not found. Woops! We can't find that page, Go Home If I leave it there, I just get a blank page..
    What steps will reproduce the problem? 1. Follow install instructions 2. Point to index.php What is the expected output? What do you see instead? PHP Fatal error: Call to a member function on a non-object in /usr/www/pastebin/system/application/controllers/main.php on line 260 What version of the product are you using? On what operating system? Latest version, FreeBSD 6.3, Apache 2.2.9, PHP 5.2.6. Please provide any additional information below. Line 260 reads: $check = $this->pastes->checkPaste(2); If I comment it out, I get this error: 404 Page Not Found The page you requested was not found. Woops! We can't find that page, Go Home If I leave it there, I just get a blank page..
  • Oct 17, 2008
    issue 11 (download paste is giving me 404 error code) commented on by placi...@sltnet.lk   -   Download issue can be rectified by adding "$route['view/download/:any'] = 'main/download/';" to the routes.php. Hope this helps. - Placidus
    Download issue can be rectified by adding "$route['view/download/:any'] = 'main/download/';" to the routes.php. Hope this helps. - Placidus
  • Oct 02, 2008
    issue 11 (download paste is giving me 404 error code) Status changed by b...@benmcredmond.com   -  
    Status: Accepted
    Status: Accepted
  • Oct 02, 2008
    issue 11 (download paste is giving me 404 error code) reported by the.vbm   -   What steps will reproduce the problem? 1. clicking on download paste link What is the expected output? What do you see instead? should be able to download paste instead it's giving me "The page you requested was not found." What version of the product are you using? On what operating system? stikked 0.5.3 Please provide any additional information below. when i click on download paste i get this link http://url/index.php/view/download/PID
    What steps will reproduce the problem? 1. clicking on download paste link What is the expected output? What do you see instead? should be able to download paste instead it's giving me "The page you requested was not found." What version of the product are you using? On what operating system? stikked 0.5.3 Please provide any additional information below. when i click on download paste i get this link http://url/index.php/view/download/PID
  • Sep 27, 2008
    ChangeLog Wiki page edited by b...@stikked.com
  • Sep 27, 2008
    issue 10 (Does not work on case sensitive file systems) Status changed by b...@stikked.com   -   Fixed in stikked 0.5.3
    Status: Fixed
    Fixed in stikked 0.5.3
    Status: Fixed
  • Sep 27, 2008
    ChangeLog Wiki page edited by b...@stikked.com
  • Sep 27, 2008
    r47 (Updates for stikked 0.5.3 ) committed by b...@stikked.com   -   Updates for stikked 0.5.3
    Updates for stikked 0.5.3
  • Sep 27, 2008
    r46 (Accidently renamed libraries to the models dir... ) committed by b...@stikked.com   -   Accidently renamed libraries to the models dir...
    Accidently renamed libraries to the models dir...
  • Sep 27, 2008
    ChangeLog Wiki page edited by b...@stikked.com
  • Sep 27, 2008
    r44 (Renaming Process.php to process.php to make it more compatib...) committed by b...@stikked.com   -   Renaming Process.php to process.php to make it more compatible on case-sensitive file systems.
    Renaming Process.php to process.php to make it more compatible on case-sensitive file systems.
  • Sep 27, 2008
    r43 (Renaming DB_Session.php to db_session.php to make it more co...) committed by b...@stikked.com   -   Renaming DB_Session.php to db_session.php to make it more compatible on case-sensitive file systems.
    Renaming DB_Session.php to db_session.php to make it more compatible on case-sensitive file systems.
  • Sep 27, 2008
    r42 (Renaming Pastes.php to pastes.php to make it more compatible...) committed by b...@stikked.com   -   Renaming Pastes.php to pastes.php to make it more compatible on case-sensitive file systems.
    Renaming Pastes.php to pastes.php to make it more compatible on case-sensitive file systems.
  • Sep 27, 2008
    r41 (Renaming Languages.php to languages.php to make it more comp...) committed by b...@stikked.com   -   Renaming Languages.php to languages.php to make it more compatible on case-sensitive file systems.
    Renaming Languages.php to languages.php to make it more compatible on case-sensitive file systems.
  • Sep 27, 2008
    issue 10 (Does not work on case sensitive file systems) commented on by b...@stikked.com   -   That's a hack and a half :). You know what, I'll just rename the files. getting to it now!
    That's a hack and a half :). You know what, I'll just rename the files. getting to it now!
  • Sep 26, 2008
    issue 10 (Does not work on case sensitive file systems) commented on by ken.mickles   -   Quick fix (not heavily tested, but seems to work for a simple paste): ln -s system/application/models/Languages.php system/application/models/languages.php ln -s system/application/models/Pastes.php system/application/models/pastes.php ln -s system/application/libraries/DB_Session.php system/application/libraries/Db_session.php
    Quick fix (not heavily tested, but seems to work for a simple paste): ln -s system/application/models/Languages.php system/application/models/languages.php ln -s system/application/models/Pastes.php system/application/models/pastes.php ln -s system/application/libraries/DB_Session.php system/application/libraries/Db_session.php
  • Sep 24, 2008
    issue 10 (Does not work on case sensitive file systems) changed by b...@stikked.com   -   I am aware of this issue. Will be fixed in 0.5.3. Thanks!
    Status: Started
    Owner: b...@stikked.com
    Labels: Priority-High Priority-Medium
    I am aware of this issue. Will be fixed in 0.5.3. Thanks!
    Status: Started
    Owner: b...@stikked.com
    Labels: Priority-High Priority-Medium
  • Sep 24, 2008
    issue 10 (Does not work on case sensitive file systems) reported by dangoor   -   What steps will reproduce the problem? 1. install on Linux 2. watch failures like db_session, language, pastes What is the expected output? What do you see instead? Error message instead of functioning software ;) What version of the product are you using? On what operating system? latest release as of 9/24 (0.5.2) Please provide any additional information below. Windows and Mac OS X have case insensitive file systems. Linux typically has case sensitive file systems. Stikked does not work out of the box on linux, but all you need to do is rename some files to have lower case letters. This is actually kind of tricky to do on a case insensitive file system.
    What steps will reproduce the problem? 1. install on Linux 2. watch failures like db_session, language, pastes What is the expected output? What do you see instead? Error message instead of functioning software ;) What version of the product are you using? On what operating system? latest release as of 9/24 (0.5.2) Please provide any additional information below. Windows and Mac OS X have case insensitive file systems. Linux typically has case sensitive file systems. Stikked does not work out of the box on linux, but all you need to do is rename some files to have lower case letters. This is actually kind of tricky to do on a case insensitive file system.
  • Sep 15, 2008
    ChangeLog Wiki page edited by b...@stikked.com
  • Sep 15, 2008
    ChangeLog Wiki page edited by b...@stikked.com
  • Sep 15, 2008
    r38 (deleted pointless current branch. ) committed by b...@stikked.com   -   deleted pointless current branch.
    deleted pointless current branch.
  • Sep 15, 2008
    r37 (Stikked Version 0.5.2 Updated all code to work with phpdoc....) committed by b...@stikked.com   -   Stikked Version 0.5.2 Updated all code to work with phpdoc. Documentation generated by phpdoc included in docs/.
    Stikked Version 0.5.2 Updated all code to work with phpdoc. Documentation generated by phpdoc included in docs/.
  • Sep 15, 2008
    issue 9 (Expire Date is always set to 24 days) commented on by b...@stikked.com   -   Can anyone replicate this?
    Can anyone replicate this?
  • Sep 15, 2008
    issue 4 (TextMate Bundle no extension in file) changed by b...@stikked.com   -  
    Status: Invalid
    Owner: b...@stikked.com
    Status: Invalid
    Owner: b...@stikked.com
  • Sep 15, 2008
    issue 2 (anchors are hard coded and use base_url() instead of using t...) Status changed by b...@stikked.com   -  
    Status: Fixed
    Status: Fixed
  • Sep 14, 2008
    ChangeLog Wiki page added by b...@stikked.com
  • Sep 14, 2008
    r35 (Stikked Version 0.5.1 Major Feature Additions: * Paste Repl...) committed by b...@stikked.com   -   Stikked Version 0.5.1 Major Feature Additions: * Paste Replies Now Implemented. * Paste Downloading. * New Design based off stikked.com Minor Feature Additions: * Changed non-private paste ids to be a random number, to be easier to remember. * Added status messages for some actions. * Now using YUI font library for accessiblity. Bug Fixes/Enhancements: * Fields are now re-populated after generating an error when submitting a paste. * All curly braces at the start and end of code blocks are now on their on line. For better readability. * Removed all random and pointless use of "double quotes". * Organised views into separate folders. * Links now work without the .htaccess
    Stikked Version 0.5.1 Major Feature Additions: * Paste Replies Now Implemented. * Paste Downloading. * New Design based off stikked.com Minor Feature Additions: * Changed non-private paste ids to be a random number, to be easier to remember. * Added status messages for some actions. * Now using YUI font library for accessiblity. Bug Fixes/Enhancements: * Fields are now re-populated after generating an error when submitting a paste. * All curly braces at the start and end of code blocks are now on their on line. For better readability. * Removed all random and pointless use of "double quotes". * Organised views into separate folders. * Links now work without the .htaccess
  • Sep 14, 2008
    r34 (deleting current branch. ) committed by b...@stikked.com   -   deleting current branch.
    deleting current branch.
  • Sep 14, 2008
    issue 3 (Links in IE7) changed by b...@stikked.com   -  
    Status: WontFix
    Owner: b...@stikked.com
    Status: WontFix
    Owner: b...@stikked.com
  • Sep 14, 2008
    issue 6 (Bug: Paste replies do not respect Private pastes) Status changed by b...@stikked.com   -   No longer makes any sense, with upcoming paste replies in 0.5.1.
    Status: Invalid
    No longer makes any sense, with upcoming paste replies in 0.5.1.
    Status: Invalid
  • Sep 14, 2008
    issue 2 (anchors are hard coded and use base_url() instead of using t...) Status changed by b...@stikked.com   -  
    Status: started
    Status: started
  • Sep 14, 2008
    issue 5 (New feature: paste replies) Status changed by b...@stikked.com   -  
    Status: Fixed
    Status: Fixed
 
Hosted by Google Code