Skip to content

Commit 4cf34b2

Browse files
author
Mark Vincent
authored
Merge pull request #39 from WildcardSearch/maintenance
2.1.1 Release
2 parents 2a6e343 + ab1fd10 commit 4cf34b2

32 files changed

+1413
-965
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## YourCode 2.1
1+
## YourCode 2.1.1
22
for MyBB 1.8.x
33

44
*Forget MyCode. Take control of YourCode-- a much better way of handling BB Code for MyBB forums*

Upload/admin/jscripts/yourcode/yourcode_edit.js

+13
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,19 @@
2020
*/
2121
function init() {
2222
$("#callback").change(callbackChange);
23+
$("#yourcodeForm").validate({
24+
rules: {
25+
title: "required",
26+
regex: "required",
27+
},
28+
errorPlacement: function(error, element) {
29+
error.css({
30+
color: "red",
31+
paddingLeft: "5px",
32+
});
33+
error.insertAfter(element);
34+
},
35+
});
2336
}
2437

2538
/**

Upload/admin/jscripts/yourcode/yourcode_edit.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Upload/admin/jscripts/yourcode/yourcode_inline.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Upload/admin/jscripts/yourcode/yourcode_sandbox.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Upload/inc/languages/english/admin/yourcode.lang.php

+14
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
$l['yourcode'] = 'YourCode';
1515
$l['yourcode_plugin_description'] = "Forget MyCode. Take control of YourCode's more powerful way to manage custom BB codes and even the internally cached MyCodes.";
16+
$l['yourcode_logo'] = 'YourCode Logo';
1617

1718
// general
1819
$l['yourcode_yes'] = 'Yes';
@@ -171,4 +172,17 @@
171172
$l['yourcode_invalid_module'] = 'Invalid module';
172173
$l['yourcode_no_modules'] = 'no modules';
173174

175+
// plugin requirements
176+
$l['yourcode_folders_requirement_warning'] = 'One or more folders are not writable. These folders need to be writable during installation and upgrades for themeable items to be upgraded on a per-theme basis.<br /><strong>Folder(s):</strong><br />';
177+
$l['yourcode_subfolders_unwritable'] = 'One or more subfolders in <span style="font-family: Courier New; font-weight: bolder; font-size: small; color: black;">{1}</span>';
178+
$l['yourcode_cannot_be_installed'] = 'YourCode cannot be installed!';
179+
180+
// settings
181+
$l['yourcode_plugin_settings'] = 'Plugin Settings';
182+
$l['yourcode_settings_title'] = 'YourCode Settings';
183+
$l['yourcode_settingsgroup_description'] = 'further customize the plugin';
184+
185+
$l['yourcode_minimize_js_title'] = 'Minimize JavaScript?';
186+
$l['yourcode_minimize_js_description'] = 'YES (default) to serve client-side scripts minified to increase performance, NO to serve beautiful, commented code ;)';
187+
174188
?>

Upload/inc/plugins/yourcode.php

+18-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
}
1818

1919
define('YOURCODE_MOD_URL', MYBB_ROOT. 'inc/plugins/yourcode/modules');
20-
define('YOURCODE_VERSION', '2.1');
20+
define('YOURCODE_VERSION', '2.1.1');
21+
22+
// register custom class autoloader
23+
spl_autoload_register('yourCodeClassAutoLoad');
24+
2125
require_once MYBB_ROOT . 'inc/plugins/yourcode/functions.php';
2226

2327
// load the install/admin routines only if in ACP.
@@ -27,4 +31,17 @@
2731
require_once MYBB_ROOT . 'inc/plugins/yourcode/forum.php';
2832
}
2933

34+
/**
35+
* class autoloader
36+
*
37+
* @param string the name of the class to load
38+
*/
39+
function yourCodeClassAutoLoad($className) {
40+
$path = MYBB_ROOT . "inc/plugins/yourcode/classes/{$className}.php";
41+
42+
if (file_exists($path)) {
43+
require_once $path;
44+
}
45+
}
46+
3047
?>

Upload/inc/plugins/yourcode/acp.php

+19-16
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,19 @@ function yourcode_admin()
3131
}
3232

3333
// now load up, this is our time
34-
global $mybb, $lang, $html;
34+
global $mybb, $lang, $html, $min;
3535
if (!$lang->yourcode) {
3636
$lang->load('yourcode');
3737
}
3838

39+
if ($mybb->settings['yourcode_minimize_js']) {
40+
$min = '.min';
41+
}
42+
3943
// no need for all the classes and functions if it is just AJAX test
4044
if ($mybb->input['mode'] != 'xmlhttp') {
41-
require_once MYBB_ROOT . 'inc/plugins/yourcode/classes/YourCode.php';
42-
require_once MYBB_ROOT . 'inc/plugins/yourcode/classes/HTMLGenerator.php';
43-
4445
// URL, link and image markup generator
45-
$html = new HTMLGenerator(YOURCODE_URL, array('script', 'style', 'type', 'name'));
46+
$html = new HTMLGenerator010000(YOURCODE_URL, array('script', 'style', 'type', 'name'));
4647

4748
$page->extra_header .= <<<EOF
4849
@@ -73,7 +74,7 @@ function yourcode_admin()
7374
*/
7475
function yourcode_admin_view()
7576
{
76-
global $page, $mybb, $lang, $db, $html;
77+
global $page, $mybb, $lang, $db, $html, $min;
7778

7879
if ($mybb->request_method == 'post') {
7980
if ($mybb->input['mode'] == 'inline') {
@@ -105,7 +106,7 @@ function yourcode_admin_view()
105106
break;
106107
default:
107108
$value = ($mybb->input['inline_action'] == 'activate');
108-
$action = $lang->yourcode_activated;
109+
$action = $value ? $lang->yourcode_activated : $lang->yourcode_deactivated;
109110

110111
if (($this_code->get('active') &&
111112
$value) ||
@@ -207,7 +208,7 @@ function yourcode_admin_view()
207208

208209
$page->extra_header .= <<<EOF
209210
210-
<script type="text/javascript" src="jscripts/yourcode/yourcode_inline.js"></script>
211+
<script type="text/javascript" src="jscripts/yourcode/yourcode_inline{$min}.js"></script>
211212
<script type="text/javascript">
212213
<!--
213214
YourCode.inline.setup({
@@ -346,7 +347,7 @@ function yourcode_admin_view()
346347
*/
347348
function yourcode_admin_edit()
348349
{
349-
global $page, $mybb, $lang, $db, $html;
350+
global $page, $mybb, $lang, $db, $html, $min;
350351

351352
// verify incoming POST request
352353
if (!verify_post_check($mybb->input['my_post_key'])) {
@@ -407,7 +408,11 @@ function yourcode_admin_edit()
407408
// start page output
408409
$page->add_breadcrumb_item($lang->yourcode);
409410
$page->add_breadcrumb_item($lang->yourcode_admin_edit);
410-
$page->extra_header .= '<script type="text/javascript" src="jscripts/yourcode/yourcode_edit.js"></script>';
411+
$page->extra_header .= <<<EOF
412+
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/validate/jquery.validate.min.js?ver=1804"></script>
413+
<script type="text/javascript" src="jscripts/yourcode/yourcode_edit{$min}.js"></script>
414+
415+
EOF;
411416
$page->output_header("{$lang->yourcode} - {$lang->yourcode_admin_edit}");
412417
yourcode_output_tabs('yourcode_edit');
413418

@@ -446,7 +451,7 @@ function yourcode_admin_edit()
446451
$em = ' <em>*</em>';
447452

448453
// hmm could this be the form?
449-
$form = new Form($html->url(array("action" => 'edit')), 'post');
454+
$form = new Form($html->url(array("action" => 'edit')), 'post', 'yourcodeForm');
450455

451456
$tabs = array(
452457
"general" => $lang->yourcode_tab_general,
@@ -509,7 +514,7 @@ function yourcode_admin_edit()
509514

510515
// do our sandbox magic from admin/modules/config/mycode.php but use our own regex tester that supports moar cool stuff. Also had to add some options
511516
echo <<<EOF
512-
<script type="text/javascript" src="./jscripts/yourcode/yourcode_sandbox.js"></script>
517+
<script type="text/javascript" src="./jscripts/yourcode/yourcode_sandbox{$min}.js"></script>
513518
<script type="text/javascript">
514519
$(function() {
515520
<!--
@@ -546,8 +551,6 @@ function yourcode_admin_module()
546551
{
547552
global $page, $mybb, $lang, $db, $cache, $html;
548553

549-
require_once MYBB_ROOT . "inc/plugins/yourcode/classes/YourCodeModule.php";
550-
551554
// load our cache right away
552555
$yourcode = $cache->read('yourcode');
553556
$activeModules = $yourcode['active']['modules'];
@@ -706,7 +709,7 @@ function yourcode_admin_module()
706709
$page->add_breadcrumb_item($lang->yourcode_admin_module);
707710
$page->extra_header .= <<<EOF
708711
709-
<script type="text/javascript" src="jscripts/yourcode/yourcode_inline.js"></script>
712+
<script type="text/javascript" src="jscripts/yourcode/yourcode_inline{$min}.js"></script>
710713
<script type="text/javascript">
711714
<!--
712715
YourCode.inline.setup({
@@ -771,7 +774,7 @@ function yourcode_admin_module()
771774
}
772775

773776
$title = "{$module->get('title')} ({$module->get('version')})";
774-
$name = $module->get('base_name');
777+
$name = $module->get('baseName');
775778
$isActive = in_array($name, $activeModules);
776779
if ($isActive) {
777780
$activeText = $lang->yourcode_deactivate;

Upload/inc/plugins/yourcode/classes/ExternalModule.php

-152
This file was deleted.

0 commit comments

Comments
 (0)