2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/media/js/QM_helper.js
substantialnoninfringinguser 8ad044cb2c [svn] * Make Q< wikilinks work again
* Add new ajax bit in LogbookEntry admin which checks for QMs not in wikilink format and allows one click fixes. Soon to be expanded to check for wikilinks that aren't in foreignkey.
* Tweaks to admin including using raw_id_fields for PersonExpedition & other foreignkeyed models with lots of instances.
2009-07-06 08:31:24 +01:00

79 lines
1.7 KiB
JavaScript

$(document).ready(function(){
/*begin ajax query stuff for getting next QM number*/
$('.number:first').append("<a href='javascript:void(0)' class='next_qm_link'>get next number</a>");
new_qm_link=function(e){
if ($('#id_cave:first')[0].value != "")
{
$.post('/newqmnumber/',{'cave':$('#id_cave')[0].value,'year':$('#id_expedition')[0].value}, function(data){
$('#id_QMs_found-0-number')[0].value=data;
});
}
else {
alert('Please choose a cave and try again.')
};
};
$('.next_qm_link').bind("click", new_qm_link);
/*end ajax query stuff for getting next QM number*/
/*begin ajax query stuff for getting suggestions view*/
suggestions_query=function(){
slug=$('#id_slug')[0].value;
date=$('#id_date')[0].value;
$.post('/lbo_suggestions/',{'slug':slug,'date':date}, function(data){
if ($('#suggestions').length>0){
$('#suggestions').replaceWith(data);
}
else{
$('#id_text').parent().append(data);
}
});
};
$('#id_text').parent().append("<a href='javascript:void(0)' class='update_suggestions'>get / update suggestions</a>");
$(".update_suggestions").bind("click", suggestions_query);
replace=function(from,to){
$('#id_text').text($('#id_text').text().replace(from,to))
$('[name=_continue]').click()
}
suggestions_query();
/*end*/
/*begin reccomendations stuff*/
/*search for QMs
suspect_QMs=$('#id_text')[0].value.match(/\b(\d\d)-(\d\d\w?)\b/g);
linked_QMs=
$('#suggestions').append(
"\
<h2>May I reccomend:</h2>\
Putting in wikilinks for the following QMs:\
"
);
$('#suggestions').append('<li>'+suspect_QMs.join('</li><li>')+</li>);*/
/*end reccomendations stuff*/
});