comparison templates/snippet/snippet_details.js @ 102:f872c643b056

Updates to snippet functionality (see details) Sorry about the large commit, but it was difficult to break it up as a lot of new functionality was introduced. Most of it is specific to the snippet feature but there are some other changes as well. Commit highlights: * Added the ability to switch the syntax highlighting colour scheme when viewing a snippet. This is currently done on a per-snippet basis only, but eventually it will be possible to set a default in your profile to have all the snippets you view use that colour scheme. There are currently 8 different colour schemes, all of which were taken from the default pygments stylesheets (some were modified). * Added a "num_views" field to the Snippet model, with the field being incremented any time the snippet view is called (raw or regular view). * Created a simple "explore" view that lists the recently-posted snippets. Will implement pagination and sorting by other attributes ("popularity", for example, based on number of views) as well. * Added a post-save hook to the User model to ensure that a Profile is created for every user as soon as the User itself is created. This alleviates the need for a get_profile method that checks if the user has a profile or not and creates one if necessary. (The code is currently still there, will be cleaned up soon). * Added back the wordwrap toggling feature. Currently, if you want to enable word-wrapping, the line numbers have to be hidden in order to ensure that the lines and their numbers don't go out of sync. This will be fixed soon. * History/diff view is back * And some other minor cosmetic changes. Note: since some existing models have been changed, you'll likely need to delete the existing sqlite database before running syncdb. The alternative is to determine the necessary column changes/additions and run the SQL query yourself.
author dellsystem <ilostwaldo@gmail.com>
date Fri, 31 Aug 2012 02:53:22 -0400
parents 329a9d17be88
children 7d753658dc0e
comparison
equal deleted inserted replaced
101:a8da60d611f7 102:f872c643b056
1 1 jQuery(document).ready(function () {
2 jQuery(document).ready(function(){
3 2
4 curLine = document.location.hash; 3 curLine = document.location.hash;
5 if(curLine.substring(0,2) == '#l'){ 4 if(curLine.substring(0,2) == '#l'){
6 $('div.snippet div.line'+curLine).addClass('marked'); 5 $('div.snippet div.line'+curLine).addClass('marked');
7 } 6 }
8
9 $("div.accordion").accordion({
10 autoHeight: false,
11 header: 'h3',
12 animation: 'bounceslide',
13 duration: 2000
14 });
15 7
16 /** 8 /**
17 * Diff Ajax Call 9 * Diff Ajax Call
18 */ 10 */
19 $("form#diffform").submit(function() { 11 $("form#diffform").submit(function() {
25 }); 17 });
26 return false; 18 return false;
27 }); 19 });
28 20
29 /** 21 /**
30 * Wordwrap 22 * Word wrap
31 */ 23 */
32 $('#toggleWordwrap').toggle( 24 $('#toggle-wordwrap').click(function () {
33 function(){ 25 // Hide the line numbers (otherwise they could be wrong)
34 $('div.snippet pre.code').css('white-space', 'pre-wrap'); 26 $('#line-numbers').toggle();
35 return false; 27
36 }, 28 // Toggle the wrapping on the highlighted code
37 function(){ 29 $('.highlight').toggleClass('wrap');
38 $('div.snippet pre.code').css('white-space', 'pre'); 30
39 return false; 31 return false;
40 } 32 });
41 ); 33
34 /**
35 * Changing syntax highlighting colours
36 */
37 var currentStyle = $('#change-highlighting').attr('data-default');
38 $('#change-highlighting').change(function () {
39 var newStyle = $(this).find(':selected').attr('name');
40
41 $('.highlight').removeClass(currentStyle).addClass(newStyle);
42 currentStyle = newStyle;
43 });
42 44
43 /** 45 /**
44 * Line Highlighting 46 * Line Highlighting
45 */ 47 */
46 $('div.snippet th a').each(function(i){ 48 $('div.snippet th a').each(function(i){