[0] | 1 | $(function() { |
---|
| 2 | // Hide main title |
---|
| 3 | if ($('#blog_title_hide').attr('checked')) { |
---|
| 4 | toggleDisable($('#blog_title_f')); |
---|
| 5 | toggleDisable($('#blog_title_s')); |
---|
| 6 | toggleDisable($('#blog_title_c')); |
---|
| 7 | toggleDisable($('#blog_title_a')); |
---|
| 8 | toggleDisable($('#blog_title_p')); |
---|
| 9 | } |
---|
| 10 | |
---|
| 11 | $('#blog_title_hide').click(function() { |
---|
| 12 | toggleDisable($('#blog_title_f')); |
---|
| 13 | toggleDisable($('#blog_title_s')); |
---|
| 14 | toggleDisable($('#blog_title_c')); |
---|
| 15 | toggleDisable($('#blog_title_a')); |
---|
| 16 | toggleDisable($('#blog_title_p')); |
---|
| 17 | }); |
---|
| 18 | |
---|
| 19 | // Upload form |
---|
| 20 | if ($('#top_image').val() == 'custom') { |
---|
| 21 | $('#uploader').show(); |
---|
| 22 | } else { |
---|
| 23 | $('#uploader').hide(); |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | $('#top_image').change(function() { |
---|
| 27 | if (this.value == 'custom') { |
---|
| 28 | $('#uploader').show(); |
---|
| 29 | $('#image-preview').attr('src',dotclear.blowup_public_url+'/page-t.png'); |
---|
| 30 | } else { |
---|
| 31 | $('#uploader').hide(); |
---|
| 32 | $('#uploader input').val(''); |
---|
| 33 | $('#image-preview').attr('src','index.php?pf=blowupConfig/alpha-img/page-t/' + this.value + '.png'); |
---|
| 34 | } |
---|
| 35 | }); |
---|
| 36 | |
---|
| 37 | // Predefined styles |
---|
[76] | 38 | // /!\ needs geek master to add title="Choose a predefined style" in select tag |
---|
[0] | 39 | var styles_combo = document.createElement('select'); |
---|
| 40 | $(styles_combo).append('<option value=""> </option>'); |
---|
| 41 | $(styles_combo).append('<option value="none">none</option>'); |
---|
| 42 | |
---|
| 43 | for (var style in dotclear.blowup_styles) { |
---|
| 44 | styles_option = document.createElement('option'); |
---|
| 45 | styles_option.value = dotclear.blowup_styles[style]; |
---|
| 46 | $(styles_option).append(style); |
---|
| 47 | $(styles_combo).append(styles_option); |
---|
| 48 | } |
---|
| 49 | |
---|
| 50 | $('#theme_config').prepend(styles_combo); |
---|
| 51 | $(styles_combo).wrap('<fieldset></fieldset>').before('<legend>' + dotclear.msg.predefined_styles + '</legend>').wrap('<p></p>'); |
---|
| 52 | |
---|
| 53 | $(styles_combo).change(function() { |
---|
| 54 | if (this.value == 'none') { |
---|
| 55 | $(this.form).find('input[type=text]').val('').css({backgroundColor: '#FFF', color: '#000'}); |
---|
| 56 | $(this.form).find('select').not($(this)).val(''); |
---|
| 57 | $('#top_image').val('default'); |
---|
| 58 | } else { |
---|
| 59 | applyBlowupValues(this.value); |
---|
| 60 | } |
---|
| 61 | }); |
---|
| 62 | |
---|
| 63 | // Code import |
---|
| 64 | var e = $('#bu_export ~ fieldset:first'); |
---|
| 65 | e.toggle(); |
---|
| 66 | |
---|
| 67 | var img = document.createElement('img'); |
---|
| 68 | img.src = dotclear.img_plus_src; |
---|
| 69 | img.alt = dotclear.img_plus_alt; |
---|
| 70 | img.className = 'expand'; |
---|
| 71 | $(img).css('cursor','pointer'); |
---|
| 72 | $(document.createTextNode(' ')).prependTo('#bu_export'); |
---|
| 73 | $(img).prependTo('#bu_export'); |
---|
| 74 | |
---|
| 75 | $(img).click(function() { |
---|
| 76 | if (e.css('display') == 'none') { |
---|
| 77 | this.src = dotclear.img_minus_src; |
---|
| 78 | this.alt = dotclear.img_minus_alt; |
---|
| 79 | } else { |
---|
| 80 | this.src = dotclear.img_plus_src; |
---|
| 81 | this.alt = dotclear.img_plus_alt; |
---|
| 82 | } |
---|
| 83 | e.toggle(); |
---|
| 84 | }); |
---|
| 85 | |
---|
| 86 | var a = document.createElement('a'); |
---|
| 87 | a.href = '#'; |
---|
| 88 | $(a).text(dotclear.msg.apply_code); |
---|
| 89 | |
---|
| 90 | e.append(a); |
---|
| 91 | |
---|
| 92 | $(a).click(function() { |
---|
| 93 | var code = e.find('#export_code'); |
---|
| 94 | if (code.size() == 0) { return false; } |
---|
| 95 | |
---|
| 96 | applyBlowupValues(code.val()); |
---|
| 97 | return false; |
---|
| 98 | }); |
---|
| 99 | |
---|
| 100 | function toggleDisable(e) { |
---|
| 101 | if (e.attr('disabled')) { |
---|
| 102 | e.removeAttr('disabled'); |
---|
| 103 | } else { |
---|
| 104 | e.attr('disabled','disabled'); |
---|
| 105 | } |
---|
| 106 | } |
---|
| 107 | |
---|
| 108 | function applyBlowupValues(code) { |
---|
| 109 | code = code.replace("\n",""); |
---|
| 110 | var re = /(^| )([a-zA-Z0-9_]+):"(.*?)"(;|$)/g; |
---|
| 111 | var s = code.match(re); |
---|
| 112 | |
---|
| 113 | if (typeof(s) == 'object' && s.length > 0) { |
---|
| 114 | var member, target, value, t_e; |
---|
| 115 | var reg = new RegExp('^(.+):"(.*)"(;?)\s*$'); |
---|
| 116 | for (var i=0; i<s.length; i++) { |
---|
| 117 | member = reg.exec(s[i]); |
---|
| 118 | target = member[1].replace(' ',''); |
---|
| 119 | value = member[2].replace(' ',''); |
---|
| 120 | updateValueField($('#' + target),value); |
---|
| 121 | } |
---|
| 122 | } |
---|
| 123 | } |
---|
| 124 | |
---|
| 125 | function updateValueField(e,v) { |
---|
| 126 | e.val(v); |
---|
| 127 | if (v.match(/^#[0-9A-F]{6}$/)) { |
---|
| 128 | e.css({ |
---|
| 129 | backgroundColor: v, |
---|
| 130 | color: getColorLum(v) > 0.5 ? '#000' : '#fff' |
---|
| 131 | }); |
---|
| 132 | } |
---|
| 133 | } |
---|
| 134 | |
---|
| 135 | function getColorLum(color) |
---|
| 136 | { |
---|
| 137 | var rgb = [parseInt('0x' + color.substring(1, 3)) / 255, |
---|
| 138 | parseInt('0x' + color.substring(3, 5)) / 255, |
---|
| 139 | parseInt('0x' + color.substring(5, 7)) / 255]; |
---|
| 140 | |
---|
| 141 | return (Math.min(rgb[0], Math.min(rgb[1], rgb[2])) + Math.max(rgb[0], Math.max(rgb[1], rgb[2]))) / 2; |
---|
| 142 | } |
---|
| 143 | }); |
---|
| 144 | |
---|
| 145 | dotclear.blowup_styles = { |
---|
| 146 | 'Spring Time' :'body_bg_c:"#E0E0E0"; body_bg_g:"light"; body_txt_f:"ss1"; body_txt_s:"1.2em"; body_txt_c:"#6B6B6B"; body_line_height:"1.4em"; top_image:"light-trails-1"; blog_title_hide:"0"; blog_title_f:""; blog_title_s:"3.5em"; blog_title_c:"#9AC528"; blog_title_a:"center"; blog_title_p:""; body_link_c:"#279AC4"; body_link_f_c:"#6D8824"; body_link_v_c:"#279AC4"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:"#6B6B6B"; sidebar_title_f:""; sidebar_title_s:""; sidebar_title_c:"#8FB22F"; sidebar_title2_f:""; sidebar_title2_s:""; sidebar_title2_c:"#279AC4"; sidebar_line_c:"#FFD02C"; sidebar_link_c:"#6B6B6B"; sidebar_link_f_c:"#9AC528"; sidebar_link_v_c:"#6B6B6B"; date_title_f:""; date_title_s:"1em"; date_title_c:"#279AC4"; post_title_f:""; post_title_s:"1.7em"; post_title_c:"#9AC528"; post_comment_bg_c:"#FFFAD1"; post_comment_c:"#6B6B6B"; post_commentmy_bg_c:"#F5F9D9"; post_commentmy_c:"#6B6B6B"; prelude_c:"#EDEDED"; footer_f:""; footer_s:"1.2em"; footer_c:"#9AC528"; footer_l_c:"#6D8824"; footer_bg_c:"#E0E0E0"', |
---|
| 147 | 'Forest' :'body_bg_c:"#80661A"; body_bg_g:"light"; body_txt_f:""; body_txt_s:""; body_txt_c:"#0A0A00"; body_line_height:"1.4em"; top_image:"default"; blog_title_hide:"0"; blog_title_f:"s3"; blog_title_s:"4em"; blog_title_c:"#D9D9BF"; blog_title_a:""; blog_title_p:""; body_link_c:"#666600"; body_link_f_c:"#CC9933"; body_link_v_c:"#8D8D40"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:"#0A0A00"; sidebar_title_f:"s2"; sidebar_title_s:"1.6em"; sidebar_title_c:"#4D4D00"; sidebar_title2_f:"s2"; sidebar_title2_s:""; sidebar_title2_c:"#575700"; sidebar_line_c:"#D9D9BF"; sidebar_link_c:"#40330D"; sidebar_link_f_c:"#666600"; sidebar_link_v_c:"#40330D"; date_title_f:""; date_title_s:""; date_title_c:"#B3B380"; post_title_f:"s2"; post_title_s:"2em"; post_title_c:"#4D4D00"; post_comment_bg_c:"#F0F0E6"; post_comment_c:"#0A0A00"; prelude_c:"#140F05"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:"#D9AD2B"; footer_bg_c:"#33260D"', |
---|
| 148 | 'Flamingo' :'body_bg_c:"#CC9999"; body_bg_g:"light"; body_txt_f:"ss3"; body_txt_s:"1.2em"; body_txt_c:"#1A1A00"; body_line_height:"1.5em"; top_image:"flamingo"; blog_title_hide:"0"; blog_title_f:"ss1"; blog_title_s:"3.5em"; blog_title_c:"#FFFFFF"; blog_title_a:""; blog_title_p:""; body_link_c:"#AD8282"; body_link_f_c:"#8282D9"; body_link_v_c:"#997373"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss4"; sidebar_title_s:"1.4em"; sidebar_title_c:"#8282D9"; sidebar_title2_f:"ss3"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#AD8282"; sidebar_line_c:"#CDCDFF"; sidebar_link_c:"#262640"; sidebar_link_f_c:"#AD8282"; sidebar_link_v_c:"#262640"; date_title_f:"ss4"; date_title_s:""; date_title_c:"#D9B3B3"; post_title_f:"ss4"; post_title_s:"1.8em"; post_title_c:"#8282D9"; post_comment_bg_c:"#F2E5E5"; post_comment_c:""; prelude_c:"#140F0F"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:""; footer_bg_c:"#140F0F"', |
---|
| 149 | 'Iceberg' :'body_bg_c:"#5280A3"; body_bg_g:"dark"; body_txt_f:"ss3"; body_txt_s:"1.1em"; body_txt_c:"#757575"; body_line_height:"1.5em"; top_image:"default"; blog_title_hide:"0"; blog_title_f:"s2"; blog_title_s:"3em"; blog_title_c:"#FFFFFF"; blog_title_a:""; blog_title_p:""; body_link_c:"#BDB000"; body_link_f_c:"#F3E66D"; body_link_v_c:"#BDB000"; sidebar_position:"left"; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss3"; sidebar_title_s:"1.4em"; sidebar_title_c:"#689B9C"; sidebar_title2_f:"ss3"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#737300"; sidebar_line_c:"#E6E6CD"; sidebar_link_c:"#66664D"; sidebar_link_f_c:"#5280A3"; sidebar_link_v_c:"#66664D"; date_title_f:""; date_title_s:""; date_title_c:"#000000"; post_title_f:"s2"; post_title_s:"1.8em"; post_title_c:"#6F6800"; post_comment_bg_c:"#E4E4E2"; post_comment_c:""; prelude_c:"#0E2734"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:""; footer_bg_c:"#0E2734"', |
---|
| 150 | 'Night' :'body_bg_c:"#0D1A26"; body_bg_g:"dark"; body_txt_f:"ss3"; body_txt_s:"1.1em"; body_txt_c:"#050A0F"; body_line_height:"1.5em"; top_image:"default"; blog_title_hide:"0"; blog_title_f:"s2"; blog_title_s:"3.5em"; blog_title_c:"#F2F2E5"; blog_title_a:""; body_link_c:"#336699"; body_link_f_c:"#66664D"; body_link_v_c:"#2B5782"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss3"; sidebar_title_s:"1.4em"; sidebar_title_c:"#336699"; sidebar_title2_f:"ss3"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#737300"; sidebar_line_c:"#E6E6CD"; sidebar_link_c:"#66664D"; sidebar_link_f_c:"#336699"; sidebar_link_v_c:"#66664D"; date_title_f:""; date_title_s:""; date_title_c:"#ADAD82"; post_title_f:"s2"; post_title_s:"1.8em"; post_title_c:"#737300"; post_comment_bg_c:"#E6E6CD"; post_comment_c:""; prelude_c:"#070E14"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:""; footer_bg_c:"#14140F"; blog_title_p:""', |
---|
| 151 | 'Peas & Carrots' :'body_bg_c:"#9DCA25"; body_bg_g:"light"; body_txt_f:"ss1"; body_txt_s:"1.2em"; body_txt_c:"#383839"; body_line_height:"1.5em"; top_image:"butterflies"; blog_title_hide:"0"; blog_title_f:"ss4"; blog_title_s:"3em"; blog_title_c:"#DBDB9D"; blog_title_a:"left"; blog_title_p:""; body_link_c:"#646B10"; body_link_f_c:"#DF6C01"; body_link_v_c:"#919924"; sidebar_position:"left"; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss4"; sidebar_title_s:""; sidebar_title_c:"#FE9017"; sidebar_title2_f:"s2"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#826228"; sidebar_line_c:"#D3EB8B"; sidebar_link_c:"#858547"; sidebar_link_f_c:"#FE9017"; sidebar_link_v_c:"#8F9645"; date_title_f:""; date_title_s:""; date_title_c:"#826228"; post_title_f:"ss4"; post_title_s:"1.8em"; post_title_c:"#806432"; post_comment_bg_c:"#EFFDCC"; post_comment_c:"#826228"; prelude_c:"#C8E186"; footer_f:""; footer_s:"1em"; footer_c:"#FFFFFF"; footer_l_c:"#FFFFFF"; footer_bg_c:"#484432"', |
---|
| 152 | 'Rabbit' :'body_bg_c:"#8F9645"; body_bg_g:"solid"; body_txt_f:"ss1"; body_txt_s:"1.2em"; body_txt_c:"#625D47"; body_line_height:"1.4em"; top_image:"rabbit"; blog_title_hide:"0"; blog_title_f:"ss1"; blog_title_s:"3.5em"; blog_title_c:"#DBDB9D"; blog_title_a:""; blog_title_p:"130:70"; body_link_c:"#646B10"; body_link_f_c:"#484C12"; body_link_v_c:"#919924"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:"#858547"; sidebar_title_f:""; sidebar_title_s:""; sidebar_title_c:"#8F9645"; sidebar_title2_f:"s2"; sidebar_title2_s:""; sidebar_title2_c:"#826228"; sidebar_line_c:"#95956B"; sidebar_link_c:"#858547"; sidebar_link_f_c:"#826228"; sidebar_link_v_c:"#8F9645"; date_title_f:"s2"; date_title_s:"1em"; date_title_c:"#826228"; post_title_f:"s2"; post_title_s:"1.6em"; post_title_c:"#806432"; post_comment_bg_c:"#D6DE91"; post_comment_c:"#826228"; prelude_c:"#484432"; footer_f:""; footer_s:"1em"; footer_c:"#A6AF50"; footer_l_c:"#DBDB9D"; footer_bg_c:"#484432"', |
---|
| 153 | 'Rec Room' :'body_bg_c:"#9B5E1C"; body_bg_g:"dark"; body_txt_f:"ss3"; body_txt_s:"1.1em"; body_txt_c:"#757575"; body_line_height:"1.5em"; top_image:"default"; blog_title_hide:"0"; blog_title_f:"s2"; blog_title_s:"3em"; blog_title_c:"#F9FAD6"; blog_title_a:""; blog_title_p:""; body_link_c:"#D1BF1D"; body_link_f_c:"#EEE168"; body_link_v_c:"#D1BF1D"; sidebar_position:"left"; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss3"; sidebar_title_s:"1.2em"; sidebar_title_c:"#689B9C"; sidebar_title2_f:"ss3"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#737300"; sidebar_line_c:"#E6E6CD"; sidebar_link_c:"#66664D"; sidebar_link_f_c:"#689B9C"; sidebar_link_v_c:"#66664D"; date_title_f:""; date_title_s:""; date_title_c:"#000000"; post_title_f:"s2"; post_title_s:"1.8em"; post_title_c:"#689B9C"; post_comment_bg_c:"#E4E4E2"; post_comment_c:""; prelude_c:"#3B2C16"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:""; footer_bg_c:"#3B2C16"', |
---|
| 154 | 'Seville' :'body_bg_c:"#B51A0D"; body_bg_g:"dark"; body_txt_f:"ss3"; body_txt_s:"1.1em"; body_txt_c:"#383839"; body_line_height:"1.5em"; top_image:"default"; blog_title_hide:"0"; blog_title_f:"s2"; blog_title_s:"3em"; blog_title_c:"#FFFFFF"; blog_title_a:""; blog_title_p:""; body_link_c:"#F18A32"; body_link_f_c:"#F1B232"; body_link_v_c:"#F18A32"; sidebar_position:"left"; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:""; sidebar_title_f:"ss3"; sidebar_title_s:"1.4em"; sidebar_title_c:"#97471C"; sidebar_title2_f:"ss3"; sidebar_title2_s:"1.2em"; sidebar_title2_c:"#737300"; sidebar_line_c:"#E6E6CD"; sidebar_link_c:"#6E6E72"; sidebar_link_f_c:"#F18A32"; sidebar_link_v_c:"#6E6E72"; date_title_f:""; date_title_s:""; date_title_c:"#97471C"; post_title_f:"s2"; post_title_s:"1.8em"; post_title_c:"#F18A32"; post_comment_bg_c:"#E4E4E2"; post_comment_c:""; prelude_c:"#381A1A"; footer_f:""; footer_s:""; footer_c:"#FFFFFF"; footer_l_c:""; footer_bg_c:"#381A1A"', |
---|
| 155 | 'Typo' :'body_bg_c:"#FFFFFF"; body_bg_g:"solid"; body_txt_f:"ss1"; body_txt_s:"1.2em"; body_txt_c:"#000000"; body_line_height:"1.4em"; top_image:"typo"; blog_title_hide:"0"; blog_title_f:"s2"; blog_title_s:"3.5em"; blog_title_c:"#B11508"; blog_title_a:"left"; blog_title_p:"140:50"; body_link_c:"#B11508"; body_link_f_c:"#000000"; body_link_v_c:"#4D4D4D"; sidebar_position:""; sidebar_text_f:""; sidebar_text_s:""; sidebar_text_c:"#000000"; sidebar_title_f:"s2"; sidebar_title_s:""; sidebar_title_c:"#B11508"; sidebar_title2_f:"s2"; sidebar_title2_s:""; sidebar_title2_c:"#000000"; sidebar_line_c:"#000000"; sidebar_link_c:"#000000"; sidebar_link_f_c:"#B11508"; sidebar_link_v_c:"#000000"; date_title_f:"s2"; date_title_s:"1em"; date_title_c:"#000000"; post_title_f:"s2"; post_title_s:"1.6em"; post_title_c:"#B11508"; post_comment_bg_c:"#FFFFFF"; post_comment_c:"#000000"; prelude_c:"#FFFFFF"; footer_f:""; footer_s:"1em"; footer_c:"#000000"; footer_l_c:"#B11508"; footer_bg_c:"#FFFFFF"' |
---|
| 156 | }; |
---|