Skip to content

Commit

Permalink
More Markdown refactoring - fixed bug with Pagedown not showing on us…
Browse files Browse the repository at this point in the history
…er profile - replaced jQuery occurrences with $.
  • Loading branch information
eviltrout committed Mar 5, 2013
1 parent cf09e20 commit 86af49e
Show file tree
Hide file tree
Showing 43 changed files with 190 additions and 201 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
This controller supports the interface for reviewing email logs.
@class AdminEmailLogsController
@class AdminEmailLogsController
@extends Ember.ArrayController
@namespace Discourse
@module Discourse
**/
**/
Discourse.AdminEmailLogsController = Ember.ArrayController.extend(Discourse.Presence, {

/**
Is the "send test email" button disabled?
@property sendTestEmailDisabled
**/
**/
sendTestEmailDisabled: (function() {
return this.blank('testEmailAddress');
}).property('testEmailAddress'),
Expand All @@ -25,7 +25,7 @@ Discourse.AdminEmailLogsController = Ember.ArrayController.extend(Discourse.Pres
sendTestEmail: function() {
var _this = this;
_this.set('sentTestEmail', false);
jQuery.ajax({
$.ajax({
url: '/admin/email_logs/test',
type: 'POST',
data: { email_address: this.get('testEmailAddress') },
Expand All @@ -35,5 +35,5 @@ Discourse.AdminEmailLogsController = Ember.ArrayController.extend(Discourse.Pres
});
return false;
}

});
26 changes: 13 additions & 13 deletions app/assets/javascripts/admin/models/admin_user.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,49 +10,49 @@ Discourse.AdminUser = Discourse.Model.extend({

deleteAllPosts: function() {
this.set('can_delete_all_posts', false);
jQuery.ajax("/admin/users/" + (this.get('id')) + "/delete_all_posts", {type: 'PUT'});
$.ajax("/admin/users/" + (this.get('id')) + "/delete_all_posts", {type: 'PUT'});
},

// Revoke the user's admin access
revokeAdmin: function() {
this.set('admin', false);
this.set('can_grant_admin', true);
this.set('can_revoke_admin', false);
return jQuery.ajax("/admin/users/" + (this.get('id')) + "/revoke_admin", {type: 'PUT'});
return $.ajax("/admin/users/" + (this.get('id')) + "/revoke_admin", {type: 'PUT'});
},

grantAdmin: function() {
this.set('admin', true);
this.set('can_grant_admin', false);
this.set('can_revoke_admin', true);
jQuery.ajax("/admin/users/" + (this.get('id')) + "/grant_admin", {type: 'PUT'});
$.ajax("/admin/users/" + (this.get('id')) + "/grant_admin", {type: 'PUT'});
},

// Revoke the user's moderation access
revokeModeration: function() {
this.set('moderator', false);
this.set('can_grant_moderation', true);
this.set('can_revoke_moderation', false);
return jQuery.ajax("/admin/users/" + (this.get('id')) + "/revoke_moderation", {type: 'PUT'});
return $.ajax("/admin/users/" + (this.get('id')) + "/revoke_moderation", {type: 'PUT'});
},

grantModeration: function() {
this.set('moderator', true);
this.set('can_grant_moderation', false);
this.set('can_revoke_moderation', true);
jQuery.ajax("/admin/users/" + (this.get('id')) + "/grant_moderation", {type: 'PUT'});
$.ajax("/admin/users/" + (this.get('id')) + "/grant_moderation", {type: 'PUT'});
},

refreshBrowsers: function() {
jQuery.ajax("/admin/users/" + (this.get('id')) + "/refresh_browsers", {type: 'POST'});
$.ajax("/admin/users/" + (this.get('id')) + "/refresh_browsers", {type: 'POST'});
bootbox.alert("Message sent to all clients!");
},

approve: function() {
this.set('can_approve', false);
this.set('approved', true);
this.set('approved_by', Discourse.get('currentUser'));
jQuery.ajax("/admin/users/" + (this.get('id')) + "/approve", {type: 'PUT'});
$.ajax("/admin/users/" + (this.get('id')) + "/approve", {type: 'PUT'});
},

username_lower: (function() {
Expand All @@ -79,7 +79,7 @@ Discourse.AdminUser = Discourse.Model.extend({
_this = this;
if (duration = parseInt(window.prompt(Em.String.i18n('admin.user.ban_duration')), 10)) {
if (duration > 0) {
return jQuery.ajax("/admin/users/" + this.id + "/ban", {
return $.ajax("/admin/users/" + this.id + "/ban", {
type: 'PUT',
data: {duration: duration},
success: function() {
Expand All @@ -99,7 +99,7 @@ Discourse.AdminUser = Discourse.Model.extend({

unban: function() {
var _this = this;
return jQuery.ajax("/admin/users/" + this.id + "/unban", {
return $.ajax("/admin/users/" + this.id + "/unban", {
type: 'PUT',
success: function() {
window.location.reload();
Expand All @@ -116,7 +116,7 @@ Discourse.AdminUser = Discourse.Model.extend({

impersonate: function() {
var _this = this;
return jQuery.ajax("/admin/impersonate", {
return $.ajax("/admin/impersonate", {
type: 'POST',
data: {
username_or_email: this.get('username')
Expand Down Expand Up @@ -145,7 +145,7 @@ Discourse.AdminUser.reopenClass({
user.set('can_approve', false);
return user.set('selected', false);
});
return jQuery.ajax("/admin/users/approve-bulk", {
return $.ajax("/admin/users/approve-bulk", {
type: 'PUT',
data: {
users: users.map(function(u) {
Expand All @@ -158,7 +158,7 @@ Discourse.AdminUser.reopenClass({
find: function(username) {
var promise;
promise = new RSVP.Promise();
jQuery.ajax({
$.ajax({
url: "/admin/users/" + username,
success: function(result) {
return promise.resolve(Discourse.AdminUser.create(result));
Expand All @@ -170,7 +170,7 @@ Discourse.AdminUser.reopenClass({
findAll: function(query, filter) {
var result;
result = Em.A();
jQuery.ajax({
$.ajax({
url: "/admin/users/list/" + query + ".json",
data: {
filter: filter
Expand Down
6 changes: 3 additions & 3 deletions app/assets/javascripts/admin/models/email_log.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
Our data model for representing an email log.
@class EmailLog
@class EmailLog
@extends Discourse.Model
@namespace Discourse
@module Discourse
**/
**/
Discourse.EmailLog = Discourse.Model.extend({});

Discourse.EmailLog.reopenClass({
Expand All @@ -19,7 +19,7 @@ Discourse.EmailLog.reopenClass({
findAll: function(filter) {
var result;
result = Em.A();
jQuery.ajax({
$.ajax({
url: "/admin/email_logs.json",
data: { filter: filter },
success: function(logs) {
Expand Down
12 changes: 6 additions & 6 deletions app/assets/javascripts/admin/models/flagged_post.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
Our data model for interacting with flagged posts.
@class FlaggedPost
@class FlaggedPost
@extends Discourse.Post
@namespace Discourse
@module Discourse
**/
**/
Discourse.FlaggedPost = Discourse.Post.extend({

flaggers: (function() {
Expand Down Expand Up @@ -49,7 +49,7 @@ Discourse.FlaggedPost = Discourse.Post.extend({
var promise;
promise = new RSVP.Promise();
if (this.get('post_number') === "1") {
return jQuery.ajax("/t/" + this.topic_id, {
return $.ajax("/t/" + this.topic_id, {
type: 'DELETE',
cache: false,
success: function() {
Expand All @@ -60,7 +60,7 @@ Discourse.FlaggedPost = Discourse.Post.extend({
}
});
} else {
return jQuery.ajax("/posts/" + this.id, {
return $.ajax("/posts/" + this.id, {
type: 'DELETE',
cache: false,
success: function() {
Expand All @@ -76,7 +76,7 @@ Discourse.FlaggedPost = Discourse.Post.extend({
clearFlags: function() {
var promise;
promise = new RSVP.Promise();
jQuery.ajax("/admin/flags/clear/" + this.id, {
$.ajax("/admin/flags/clear/" + this.id, {
type: 'POST',
cache: false,
success: function() {
Expand All @@ -99,7 +99,7 @@ Discourse.FlaggedPost.reopenClass({
findAll: function(filter) {
var result;
result = Em.A();
jQuery.ajax({
$.ajax({
url: "/admin/flags/" + filter + ".json",
success: function(data) {
var userLookup;
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/admin/models/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Discourse.Report = Discourse.Model.extend({});
Discourse.Report.reopenClass({
find: function(type) {
var model = Discourse.Report.create();
jQuery.ajax("/admin/reports/" + type, {
$.ajax("/admin/reports/" + type, {
type: 'GET',
success: function(json) {
model.mergeAttributes(json.report);
Expand Down
14 changes: 7 additions & 7 deletions app/assets/javascripts/admin/models/site_customization.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/**
Our data model for interacting with site customizations.
@class SiteCustomization
@class SiteCustomization
@extends Discourse.Model
@namespace Discourse
@module Discourse
**/
**/
Discourse.SiteCustomization = Discourse.Model.extend({
trackedProperties: ['enabled', 'name', 'stylesheet', 'header', 'override_default_style'],

init: function() {
this._super();
return this.startTrackingChanges();
},

description: (function() {
return "" + this.name + (this.enabled ? ' (*)' : '');
}).property('selected', 'name'),
Expand Down Expand Up @@ -55,7 +55,7 @@ Discourse.SiteCustomization = Discourse.Model.extend({
header: this.header,
override_default_style: this.override_default_style
};
return jQuery.ajax({
return $.ajax({
url: "/admin/site_customizations" + (this.id ? '/' + this.id : ''),
data: {
site_customization: data
Expand All @@ -66,8 +66,8 @@ Discourse.SiteCustomization = Discourse.Model.extend({

"delete": function() {
if (!this.id) return;
return jQuery.ajax({

return $.ajax({
url: "/admin/site_customizations/" + this.id,
type: 'DELETE'
});
Expand All @@ -93,7 +93,7 @@ Discourse.SiteCustomization.reopenClass({
content: [],
loading: true
});
jQuery.ajax({
$.ajax({
url: "/admin/site_customizations",
dataType: "json",
success: function(data) {
Expand Down
4 changes: 2 additions & 2 deletions app/assets/javascripts/admin/models/site_setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Discourse.SiteSetting = Discourse.Model.extend({
save: function() {
// Update the setting
var setting = this;
return jQuery.ajax("/admin/site_settings/" + (this.get('setting')), {
return $.ajax("/admin/site_settings/" + (this.get('setting')), {
data: { value: this.get('value') },
type: 'PUT',
success: function() {
Expand All @@ -91,7 +91,7 @@ Discourse.SiteSetting.reopenClass({
**/
findAll: function() {
var result = Em.A();
jQuery.get("/admin/site_settings", function(settings) {
$.get("/admin/site_settings", function(settings) {
return settings.each(function(s) {
s.originalValue = s.value;
return result.pushObject(Discourse.SiteSetting.create(s));
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/admin/models/version_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Discourse.VersionCheck = Discourse.Model.extend({
Discourse.VersionCheck.reopenClass({
find: function() {
var promise = new RSVP.Promise();
jQuery.ajax({
$.ajax({
url: '/admin/version_check',
dataType: 'json',
success: function(json) {
Expand Down
4 changes: 2 additions & 2 deletions app/assets/javascripts/discourse.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Discourse = Ember.Application.createWithMixins({

// Add a CSRF token to all AJAX requests
var csrfToken = $('meta[name=csrf-token]').attr('content');
jQuery.ajaxPrefilter(function(options, originalOptions, xhr) {
$.ajaxPrefilter(function(options, originalOptions, xhr) {
if (!options.crossDomain) {
xhr.setRequestHeader('X-CSRF-Token', csrfToken);
}
Expand All @@ -156,7 +156,7 @@ Discourse = Ember.Application.createWithMixins({
**/
logout: function() {
Discourse.KeyValueStore.abandonLocal();
return jQuery.ajax("/session/" + this.get('currentUser.username'), {
return $.ajax("/session/" + this.get('currentUser.username'), {
type: 'DELETE',
success: function(result) {
// To keep lots of our variables unbound, we can handle a redirect on logging out.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $.fn.autocomplete = function(options) {
}
return d.find('a').click(function() {
closeAutocomplete();
inputSelectedItems.splice(jQuery.inArray(item), 1);
inputSelectedItems.splice($.inArray(item), 1);
$(this).parent().parent().remove();
if (options.onChangeItems) {
return options.onChangeItems(inputSelectedItems);
Expand Down
4 changes: 2 additions & 2 deletions app/assets/javascripts/discourse/components/click_track.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Discourse.ClickTrack = {

// if they want to open in a new tab, do an AJAX request
if (e.metaKey || e.ctrlKey || e.which === 2) {
jQuery.get("/clicks/track", {
$.get("/clicks/track", {
url: href,
post_id: postId,
topic_id: topicId,
Expand All @@ -82,7 +82,7 @@ Discourse.ClickTrack = {

// If we're on the same site, use the router and track via AJAX
if (href.indexOf(window.location.origin) === 0) {
jQuery.get("/clicks/track", {
$.get("/clicks/track", {
url: href,
post_id: postId,
topic_id: topicId,
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/discourse/components/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Discourse.Development = {
return $LAB.script(js + "?hash=" + me.hash).wait(function() {
var templateName;
templateName = js.replace(".js", "").replace("/assets/", "");
return jQuery.each(Ember.View.views, function() {
return $.each(Ember.View.views, function() {
var _this = this;
if (this.get('templateName') === templateName) {
this.set('templateName', 'empty');
Expand Down
Loading

0 comments on commit 86af49e

Please sign in to comment.