Version Description
Added the message to ask users to answer a short survey for feedback on their work using the Types plugin.
Fixed a problem where the custom field groups description was missing from the post/page editing page. http://wp-types.com/forums/topic/custom-field-group-descriptions-no-longer-visible-in-cpt-add-newedit-screen/
Fixed a problem where the field descriptions werent displayed on the user profile editing page. http://wp-types.com/forums/topic/checkbox-description-fields-no-longer-display-in-types-1-6-2/
Fixed a problem where users werent able to untick the single and multiple checkbox fields on the user profile editing page.
Fixed a problem where the value of date field couldnt be cleared and added new button which clears the date field value. http://wp-types.com/forums/topic/problem-2-after-update/
Replaced the deprecated like_escape function with the wpdb::esc_like function.
Fixed a problem where the parent-child relations between custom post types persisted after deleting and re-creating a custom post type.
Fixed a problem where date picker scripts were being enqueued in the front end. https://wordpress.org/support/topic/datepicker-css-enqueued-on-public
Release Info
Developer | iworks |
Plugin | Toolset Types – Custom Post Types, Custom Fields and Taxonomies |
Version | 1.6.3 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.3
- admin.php +5 -4
- embedded/admin.php +4 -4
- embedded/bootstrap.php +5 -5
- embedded/classes/class.wpcf-post-types.php +4 -4
- embedded/classes/field.php +6 -6
- embedded/classes/fields.php +3 -3
- embedded/classes/forms.php +4 -4
- embedded/classes/loader.php +4 -4
- embedded/classes/path.php +4 -4
- embedded/classes/post-types/messages.php +4 -4
- embedded/classes/relationship.php +4 -4
- embedded/common/classes/forms.php +3 -3
- embedded/common/debug/debug-information.php +4 -4
- embedded/common/debug/functions_debug_information.php +4 -4
- embedded/common/toolset-forms/TODO +0 -2
- embedded/common/toolset-forms/__index.php +0 -24
- embedded/common/toolset-forms/api.php +38 -2
- embedded/common/toolset-forms/bootstrap.php +4 -4
- embedded/common/toolset-forms/classes/class.audio.php +18 -26
- embedded/common/toolset-forms/classes/class.checkbox.php +5 -4
- embedded/common/toolset-forms/classes/class.checkboxes.php +12 -6
- embedded/common/toolset-forms/classes/class.colorpicker.php +4 -4
- embedded/common/toolset-forms/classes/class.conditional.php +0 -1
- embedded/common/toolset-forms/classes/class.credaudio.php +6 -11
- embedded/common/toolset-forms/classes/class.credfile.php +4 -4
- embedded/common/toolset-forms/classes/class.credimage.php +6 -11
- embedded/common/toolset-forms/classes/class.credvideo.php +6 -11
- embedded/common/toolset-forms/classes/class.custom_conditional.php +0 -226
- embedded/common/toolset-forms/classes/class.date.php +19 -3
- embedded/common/toolset-forms/classes/class.date.scripts.php +6 -10
- embedded/common/toolset-forms/classes/class.eforms.php +6 -6
- embedded/common/toolset-forms/classes/class.field_factory.php +4 -4
- embedded/common/toolset-forms/classes/class.fieldconfig.php +19 -9
- embedded/common/toolset-forms/classes/class.file.php +4 -4
- embedded/common/toolset-forms/classes/class.form_factory.php +11 -8
- embedded/common/toolset-forms/classes/class.image.php +18 -25
- embedded/common/toolset-forms/classes/class.password.php +4 -4
- embedded/common/toolset-forms/classes/class.radios.php +4 -4
- embedded/common/toolset-forms/classes/class.recaptcha.php +6 -5
- embedded/common/toolset-forms/classes/class.repetitive.php +4 -4
- embedded/common/toolset-forms/classes/class.select.php +17 -7
- embedded/common/toolset-forms/classes/class.skype.php +4 -4
- embedded/common/toolset-forms/classes/class.taxonomy.php +6 -5
- embedded/common/toolset-forms/classes/class.taxonomyhierarchical.php +31 -22
- embedded/common/toolset-forms/classes/class.textarea.php +4 -4
- embedded/common/toolset-forms/classes/class.textfield.php +4 -4
- embedded/common/toolset-forms/classes/class.types.php +5 -5
- embedded/common/toolset-forms/classes/class.video.php +19 -26
- embedded/common/toolset-forms/classes/class.wysiwyg.php +17 -12
- embedded/common/toolset-forms/css/admin.css +0 -179
- embedded/common/toolset-forms/css/autocompleter.css +0 -48
- embedded/common/toolset-forms/css/cred.css +0 -179
- embedded/common/toolset-forms/css/credfile.css +0 -5
- embedded/common/toolset-forms/css/file.css +0 -19
- embedded/common/toolset-forms/css/skype.css +0 -19
- embedded/common/toolset-forms/css/taxonomy.css +0 -33
- embedded/common/toolset-forms/css/textfield-edit.css +0 -0
- embedded/common/toolset-forms/css/textfield.css +0 -0
- embedded/common/toolset-forms/css/wpt-jquery-ui/datepicker.css +52 -225
- embedded/common/toolset-forms/css/wpt-toolset-frontend.css +1 -1
- embedded/common/toolset-forms/external/autocompleter.php +3 -3
- embedded/common/toolset-forms/js/conditional.js +21 -16
- embedded/common/toolset-forms/js/date.js +41 -4
- embedded/common/toolset-forms/js/file.js +4 -4
- embedded/common/toolset-forms/js/main.js +72 -38
- embedded/common/toolset-forms/js/repetitive.js +2 -2
- embedded/common/toolset-forms/js/validation.js +34 -4
- embedded/common/toolset-forms/lib/CakePHP-Validation.php +4 -1
- embedded/common/toolset-forms/templates/metaform-item.php +4 -4
- embedded/common/toolset-forms/templates/metaform.php +4 -4
- embedded/common/utility/js/head.min.js +17 -0
- embedded/common/utility/js/jstorage.min.js +16 -0
- embedded/common/visual-editor/editor-addon.class.php +2 -2
- embedded/frontend.php +14 -7
- embedded/functions.php +4 -4
- embedded/includes/custom-types.php +4 -4
- embedded/includes/fields-post.php +13 -6
- embedded/includes/fields/audio.php +4 -4
- embedded/includes/fields/checkbox.php +4 -4
- embedded/includes/fields/checkboxes.php +18 -16
- embedded/includes/fields/file.php +4 -4
- embedded/includes/fields/image.php +4 -4
- embedded/includes/fields/radio.php +9 -5
- embedded/includes/fields/skype.php +4 -4
- embedded/includes/fields/textarea.php +5 -5
- embedded/includes/fields/video.php +4 -4
- embedded/includes/import-export.php +4 -4
- embedded/includes/module-manager.php +7 -7
- embedded/includes/post-relationship.php +4 -4
- embedded/includes/usermeta-post.php +48 -3
- embedded/includes/wpml.php +5 -5
- embedded/locale/locale-views/orig/views.po +0 -1933
- embedded/locale/locale-views/views-bg_BG.mo +0 -0
- embedded/locale/locale-views/views-de_DE.mo +0 -0
- embedded/locale/locale-views/views-es_ES.mo +0 -0
- embedded/locale/locale-views/views-fr_FR.mo +0 -0
- embedded/locale/locale-views/views-it_IT.mo +0 -0
- embedded/locale/locale-views/views-ja.mo +0 -0
- embedded/locale/locale-views/views-nl_NL.mo +0 -0
- embedded/locale/locale-views/views-pt_BR.mo +0 -0
- embedded/locale/locale-views/views-ru_RU.mo +0 -0
- embedded/locale/locale-views/views-zh_CN.mo +0 -0
- embedded/locale/locale-views/views-zh_TW.mo +0 -0
- embedded/onthego-resources/classes/onthegosystems-styles.class.php +3 -1
- embedded/onthego-resources/onthego-styles/onthego-admin-styles.css +30 -17
- embedded/onthego-resources/onthego-styles/onthego-colors.css +3 -0
- embedded/onthego-resources/onthegosystems-branding-loader.php +1 -1
- embedded/onthego-resources/onthegosystems-icons/.fontcustom-manifest.json +32 -20
- embedded/onthego-resources/onthegosystems-icons/css/_onthegosystems-icons.css +27 -20
- embedded/onthego-resources/onthegosystems-icons/css/_onthegosystems-icons.scss +27 -24
- embedded/onthego-resources/onthegosystems-icons/css/onthegosystems-icons.css +24 -18
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons-preview.html +76 -31
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_6467b5cc604861e9053e8c49cb0dd46b.eot +0 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_6467b5cc604861e9053e8c49cb0dd46b.svg +0 -73
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_6467b5cc604861e9053e8c49cb0dd46b.ttf +0 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_6467b5cc604861e9053e8c49cb0dd46b.woff +0 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot +0 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg +329 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf +0 -0
- embedded/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff +0 -0
- embedded/onthego-resources/onthegosystems-icons/vectors/access-logo.svg +9 -8
- embedded/onthego-resources/onthegosystems-icons/vectors/access.svg +12 -7
- embedded/onthego-resources/onthegosystems-icons/vectors/bootstrap-logo.svg +14 -0
- embedded/onthego-resources/onthegosystems-icons/vectors/bootstrap.svg +14 -0
- embedded/onthego-resources/onthegosystems-icons/vectors/cred-logo.svg +98 -8
- embedded/onthego-resources/onthegosystems-icons/vectors/cred.svg +97 -10
- embedded/onthego-resources/onthegosystems-icons/vectors/layouts-logo.svg +6 -6
- embedded/onthego-resources/onthegosystems-icons/vectors/layouts.svg +7 -7
- embedded/onthego-resources/onthegosystems-icons/vectors/module-logo.svg +9 -6
- embedded/onthego-resources/onthegosystems-icons/vectors/module.svg +7 -7
- embedded/onthego-resources/onthegosystems-icons/vectors/toolset-logo.svg +207 -0
- embedded/onthego-resources/onthegosystems-icons/vectors/types-logo.svg +11 -10
- embedded/onthego-resources/onthegosystems-icons/vectors/types.svg +11 -11
- embedded/onthego-resources/onthegosystems-icons/vectors/views-logo.svg +11 -9
- embedded/onthego-resources/onthegosystems-icons/vectors/views.svg +11 -11
- embedded/onthego-resources/readme.txt +11 -0
- embedded/resources/css/dashicons.css +2 -2
- embedded/resources/images/access-icon-16x16.png +0 -0
- embedded/resources/images/access-icon-64x64.png +0 -0
- embedded/resources/images/access-icon-large.png +0 -0
- embedded/resources/images/access-large.png +0 -0
- embedded/resources/images/access_16x16.png +0 -0
- embedded/resources/images/access_36x34.png +0 -0
- embedded/resources/images/bw-logo-16.png +0 -0
- embedded/resources/images/logo-12.png +0 -0
- embedded/resources/images/logo-16.png +0 -0
- embedded/resources/images/logo-20.png +0 -0
- embedded/resources/js/basic.js +3 -3
- embedded/resources/js/fields-form.js +2 -2
- embedded/usermeta-init.php +8 -18
- embedded/views/image.php +5 -13
- help.php +3 -3
- includes/ajax.php +25 -0
- includes/custom-taxonomies-form.php +4 -4
- includes/custom-types-form.php +4 -4
- includes/fields-control.php +4 -4
- includes/fields-form.php +4 -4
- includes/fields-list.php +4 -4
- includes/fields.php +4 -4
- includes/import-export.php +4 -4
- includes/introduction.php +4 -4
- includes/usermeta-control.php +4 -4
- includes/usermeta-form.php +4 -4
- marketing.php +12 -1
- marketing/types_marketing_message_survey_2014_09.php +105 -0
- marketing/types_marketing_message_survey_2014_09_admin_notice.js +24 -0
- readme.txt +32 -1
- resources/images/logo-12.png +0 -0
- resources/images/logo-16.png +0 -0
- resources/images/logo-20.png +0 -0
- resources/images/logo-32.png +0 -0
- resources/js/basic.js +2 -2
- resources/js/custom-types-form.js +2 -2
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.jpg +0 -0
- screenshot-5.png +0 -0
- upgrade.php +0 -34
- wpcf.php +6 -8
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Admin functions
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
require_once WPCF_ABSPATH . '/marketing.php';
|
@@ -36,6 +36,7 @@ function wpcf_admin_init_hook() {
|
|
36 |
/* wp_enqueue_style('wpcf-promo-tabs',
|
37 |
WPCF_RES_RELPATH . '/css/tabs.css', array(), WPCF_VERSION); */
|
38 |
wp_enqueue_style('toolset-dashicons');
|
|
|
39 |
}
|
40 |
|
41 |
/**
|
3 |
*
|
4 |
* Admin functions
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/admin.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
require_once WPCF_ABSPATH . '/marketing.php';
|
36 |
/* wp_enqueue_style('wpcf-promo-tabs',
|
37 |
WPCF_RES_RELPATH . '/css/tabs.css', array(), WPCF_VERSION); */
|
38 |
wp_enqueue_style('toolset-dashicons');
|
39 |
+
types_marketing_message_survey_2014_09_helper();
|
40 |
}
|
41 |
|
42 |
/**
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/admin.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once(WPCF_EMBEDDED_ABSPATH . '/common/visual-editor/editor-addon.class.php');
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/admin.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once(WPCF_EMBEDDED_ABSPATH . '/common/visual-editor/editor-addon.class.php');
|
@@ -7,10 +7,10 @@
|
|
7 |
*
|
8 |
* @since Types 1.2
|
9 |
*
|
10 |
-
* $HeadURL:
|
11 |
-
* $LastChangedDate: 2014-
|
12 |
-
* $LastChangedRevision:
|
13 |
-
* $LastChangedBy:
|
14 |
*
|
15 |
*/
|
16 |
|
@@ -131,7 +131,7 @@ function wpcf_embedded_init() {
|
|
131 |
// Define necessary constants if plugin is not present
|
132 |
// This ones are skipped if used as embedded code!
|
133 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
134 |
-
define( 'WPCF_VERSION', '1.6' );
|
135 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
136 |
}
|
137 |
|
7 |
*
|
8 |
* @since Types 1.2
|
9 |
*
|
10 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/bootstrap.php $
|
11 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
12 |
+
* $LastChangedRevision: 1012704 $
|
13 |
+
* $LastChangedBy: iworks $
|
14 |
*
|
15 |
*/
|
16 |
|
131 |
// Define necessary constants if plugin is not present
|
132 |
// This ones are skipped if used as embedded code!
|
133 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
134 |
+
define( 'WPCF_VERSION', '1.6.3' );
|
135 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
136 |
}
|
137 |
|
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Post Types Class
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
*
|
4 |
* Post Types Class
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/class.wpcf-post-types.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Field class.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/classes/field.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -716,11 +716,11 @@ class WPCF_Field
|
|
716 |
if ( isset( $params['raw'] ) && $params['raw'] == 'true' ) {
|
717 |
return $html;
|
718 |
} else {
|
719 |
-
$html =
|
720 |
}
|
721 |
// Process shortcodes too
|
722 |
// $shortcode = do_shortcode( $html );
|
723 |
-
$html = do_shortcode( htmlspecialchars_decode( $html ) );
|
724 |
|
725 |
return $html;
|
726 |
}
|
2 |
/*
|
3 |
* Field class.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/field.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
716 |
if ( isset( $params['raw'] ) && $params['raw'] == 'true' ) {
|
717 |
return $html;
|
718 |
} else {
|
719 |
+
$html = htmlspecialchars( $html );
|
720 |
}
|
721 |
// Process shortcodes too
|
722 |
// $shortcode = do_shortcode( $html );
|
723 |
+
$html = do_shortcode( htmlspecialchars_decode( stripslashes( $html ) ) );
|
724 |
|
725 |
return $html;
|
726 |
}
|
@@ -2,9 +2,9 @@
|
|
2 |
/**
|
3 |
* Fields class.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/classes/fields.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
2 |
/**
|
3 |
* Fields class.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/fields.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
@@ -4,10 +4,10 @@
|
|
4 |
*
|
5 |
* Returns HTML formatted output for elements and handles form submission.
|
6 |
*
|
7 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/classes/forms.php $
|
8 |
-
* $LastChangedDate: 2014-
|
9 |
-
* $LastChangedRevision:
|
10 |
-
* $LastChangedBy:
|
11 |
*
|
12 |
*
|
13 |
* @version 1.0
|
4 |
*
|
5 |
* Returns HTML formatted output for elements and handles form submission.
|
6 |
*
|
7 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/forms.php $
|
8 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
9 |
+
* $LastChangedRevision: 1012704 $
|
10 |
+
* $LastChangedBy: iworks $
|
11 |
*
|
12 |
*
|
13 |
* @version 1.0
|
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Loader class
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
*
|
4 |
* Loader class
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/loader.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* WPCF_Path
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
final class WPCF_Path
|
2 |
/**
|
3 |
* WPCF_Path
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/path.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
final class WPCF_Path
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Messages.
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/*
|
3 |
* Messages.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/post-types/messages.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Post relationship class.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/classes/relationship.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/*
|
3 |
* Post relationship class.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/classes/relationship.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -2,9 +2,9 @@
|
|
2 |
/**
|
3 |
* Returns HTML formatted output for elements and handles form submission.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/classes/forms.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
* @version 1.0
|
2 |
/**
|
3 |
* Returns HTML formatted output for elements and handles form submission.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/classes/forms.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
* @version 1.0
|
@@ -3,10 +3,10 @@
|
|
3 |
/**
|
4 |
* produce debug information
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
/**
|
4 |
* produce debug information
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/debug/debug-information.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* produce debug information
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/**
|
3 |
* produce debug information
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/debug/functions_debug_information.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -1,2 +0,0 @@
|
|
1 |
-
- Enable separately queuing scripts/styles for each field type
|
2 |
-
- Enable getting field object using API
|
|
|
|
@@ -1,24 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
error_reporting(E_ALL^E_NOTICE);
|
3 |
-
require 'classes/class.form_factory.php';
|
4 |
-
|
5 |
-
|
6 |
-
function pre($val) {
|
7 |
-
echo "<pre>";
|
8 |
-
print_r($val);
|
9 |
-
echo "</pre>";
|
10 |
-
}
|
11 |
-
|
12 |
-
|
13 |
-
$frm = new FormFactory();
|
14 |
-
$data = array('type'=>'textfield',
|
15 |
-
'title'=>'title',
|
16 |
-
'description'=>'description',
|
17 |
-
'name'=>'ciao' ,
|
18 |
-
'validation' => array()
|
19 |
-
);
|
20 |
-
|
21 |
-
$frm->addFormField('myname','textfield', $data);
|
22 |
-
|
23 |
-
echo $frm->createForm();
|
24 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
function wptoolset_form( $form_id, $config = array() ){
|
4 |
global $wptoolset_forms;
|
5 |
$html = $wptoolset_forms->form( $form_id, $config );
|
@@ -8,7 +17,7 @@ function wptoolset_form( $form_id, $config = array() ){
|
|
8 |
|
9 |
function wptoolset_form_field( $form_id, $config, $value = array() ){
|
10 |
global $wptoolset_forms;
|
11 |
-
$html = $wptoolset_forms->field( $form_id, $config, $value );
|
12 |
return apply_filters( 'wptoolset_fieldform', $html, $config, $form_id );
|
13 |
}
|
14 |
|
@@ -56,4 +65,31 @@ function wptoolset_strtotime( $date, $format = null ){
|
|
56 |
function wptoolset_timetodate( $timestamp, $format = null ){
|
57 |
global $wptoolset_forms;
|
58 |
return $wptoolset_forms->timetodate( $timestamp, $format );
|
59 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/api.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
+
*
|
10 |
+
*/
|
11 |
+
|
12 |
function wptoolset_form( $form_id, $config = array() ){
|
13 |
global $wptoolset_forms;
|
14 |
$html = $wptoolset_forms->form( $form_id, $config );
|
17 |
|
18 |
function wptoolset_form_field( $form_id, $config, $value = array() ){
|
19 |
global $wptoolset_forms;
|
20 |
+
$html = $wptoolset_forms->field( $form_id, $config, $value );
|
21 |
return apply_filters( 'wptoolset_fieldform', $html, $config, $form_id );
|
22 |
}
|
23 |
|
65 |
function wptoolset_timetodate( $timestamp, $format = null ){
|
66 |
global $wptoolset_forms;
|
67 |
return $wptoolset_forms->timetodate( $timestamp, $format );
|
68 |
+
}
|
69 |
+
/**
|
70 |
+
* wptoolset_esc_like
|
71 |
+
*
|
72 |
+
* In WordPress 4.0, like_escape() was deprecated, due to incorrect
|
73 |
+
* documentation and improper sanitization leading to a history of misuse
|
74 |
+
* To maintain compatibility with versions of WP before 4.0, we duplicate the
|
75 |
+
* logic of the replacement, wpdb::esc_like()
|
76 |
+
*
|
77 |
+
* @see wpdb::esc_like() for more details on proper use.
|
78 |
+
*
|
79 |
+
* @param string $text The raw text to be escaped.
|
80 |
+
* @return string Text in the form of a LIKE phrase. Not SQL safe. Run through
|
81 |
+
* wpdb::prepare() before use.
|
82 |
+
*/
|
83 |
+
|
84 |
+
function wptoolset_esc_like( $like )
|
85 |
+
{
|
86 |
+
global $wpdb;
|
87 |
+
if ( method_exists( $wpdb, 'esc_like' ) ) {
|
88 |
+
return $wpdb->esc_like( $like );
|
89 |
+
}
|
90 |
+
if ( version_compare( get_bloginfo('version'), '4' ) < 0 ) {
|
91 |
+
return like_escape( $like );
|
92 |
+
}
|
93 |
+
return addcslashes( $like, '_%\\' );
|
94 |
+
}
|
95 |
+
|
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/bootstrap.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/bootstrap.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -6,40 +6,32 @@ require_once 'class.file.php';
|
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Audio extends WPToolset_Field_File
|
16 |
{
|
17 |
-
|
18 |
protected $_settings = array('min_wp_version' => '3.6');
|
19 |
|
20 |
public function metaform()
|
21 |
{
|
22 |
-
$
|
23 |
-
|
|
|
|
|
24 |
}
|
25 |
-
|
26 |
-
public static function
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
$form[0]['#validate']['extension'] = array(
|
36 |
-
'args' => array(
|
37 |
-
'extension',
|
38 |
-
'16svx|2sf|8svx|aac|aif|aifc|aiff|amr|ape|asf|ast|au|aup|band|brstm|bwf|cdda|cust|dsf|dwd|flac|gsf|gsm|gym|it|jam|la|ly|m4a|m4p|mid|minipsf|mng|mod|mp1|mp2|mp3|mp4|mpc|mscz|mt2|mus|niff|nsf|off|ofr|ofs|ots|pac|psf|psf2|psflib|ptb|qsf|ra|raw|rka|rm|rmj|s3m|shn|sib|sid|smp|spc|spx|ssf|swa|tta|txm|usf|vgm|voc|vox|vqf|wav|wma|wv|xm|ym',
|
39 |
-
),
|
40 |
-
'message' => __( 'You can add only audio.', 'wpv-views' ),
|
41 |
-
);
|
42 |
-
}
|
43 |
-
return $form;
|
44 |
}
|
45 |
}
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.audio.php $
|
10 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
11 |
+
* $LastChangedRevision: 1012704 $
|
12 |
+
* $LastChangedBy: iworks $
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Audio extends WPToolset_Field_File
|
16 |
{
|
|
|
17 |
protected $_settings = array('min_wp_version' => '3.6');
|
18 |
|
19 |
public function metaform()
|
20 |
{
|
21 |
+
$validation = $this->getValidationData();
|
22 |
+
$validation = self::addTypeValidation($validation);
|
23 |
+
$this->setValidationData($validation);
|
24 |
+
return parent::metaform();
|
25 |
}
|
26 |
+
|
27 |
+
public static function addTypeValidation($validation) {
|
28 |
+
$validation['extension'] = array(
|
29 |
+
'args' => array(
|
30 |
+
'extension',
|
31 |
+
'16svx|2sf|8svx|aac|aif|aifc|aiff|amr|ape|asf|ast|au|aup|band|brstm|bwf|cdda|cust|dsf|dwd|flac|gsf|gsm|gym|it|jam|la|ly|m4a|m4p|mid|minipsf|mng|mod|mp1|mp2|mp3|mp4|mpc|mscz|mt2|mus|niff|nsf|off|ofr|ofs|ogg|ots|pac|psf|psf2|psflib|ptb|qsf|ra|raw|rka|rm|rmj|s3m|shn|sib|sid|smp|spc|spx|ssf|swa|tta|txm|usf|vgm|voc|vox|vqf|wav|wma|wv|xm|ym',
|
32 |
+
),
|
33 |
+
'message' => __( 'You can add only audio.', 'wpv-views' ),
|
34 |
+
);
|
35 |
+
return $validation;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.checkbox.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -52,6 +52,7 @@ class WPToolset_Field_Checkbox extends FieldFactory
|
|
52 |
'#value' => $value,
|
53 |
'#default_value' => array_key_exists( 'default_value', $data )? $data['default_value']:null,
|
54 |
'#name' => $this->getName(),
|
|
|
55 |
'#title' => $this->getTitle(),
|
56 |
'#validate' => $this->getValidationData(),
|
57 |
'#after' => '<input type="hidden" name="_wptoolset_checkbox[' . $this->getId() . ']" value="1" />',
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.checkbox.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
52 |
'#value' => $value,
|
53 |
'#default_value' => array_key_exists( 'default_value', $data )? $data['default_value']:null,
|
54 |
'#name' => $this->getName(),
|
55 |
+
'#description' => $this->getDescription(),
|
56 |
'#title' => $this->getTitle(),
|
57 |
'#validate' => $this->getValidationData(),
|
58 |
'#after' => '<input type="hidden" name="_wptoolset_checkbox[' . $this->getId() . ']" value="1" />',
|
@@ -4,10 +4,10 @@
|
|
4 |
*
|
5 |
* @author Srdjan
|
6 |
*
|
7 |
-
* $HeadURL:
|
8 |
-
* $LastChangedDate: 2014-
|
9 |
-
* $LastChangedRevision:
|
10 |
-
* $LastChangedBy:
|
11 |
*
|
12 |
*/
|
13 |
|
@@ -20,7 +20,7 @@ class WPToolset_Field_Checkboxes extends FieldFactory
|
|
20 |
global $post;
|
21 |
$value = $this->getValue();
|
22 |
$data = $this->getData();
|
23 |
-
|
24 |
$form = array();
|
25 |
$_options = array();
|
26 |
if (isset($data['options'])) {
|
@@ -37,7 +37,7 @@ class WPToolset_Field_Checkboxes extends FieldFactory
|
|
37 |
//if (!$checked&&isset($value)&&!empty($value)&&is_array($value)&&in_array($option['value'],$value)) {
|
38 |
// $checked=true;
|
39 |
//}
|
40 |
-
|
41 |
$_options[$option_key] = array(
|
42 |
'#value' => $option['value'],
|
43 |
'#title' => $option['title'],
|
@@ -46,6 +46,11 @@ class WPToolset_Field_Checkboxes extends FieldFactory
|
|
46 |
'#name' => $option['name']."[]",
|
47 |
//'#inline' => true,
|
48 |
);
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
if ( !is_admin() ) {// TODO maybe add a doing_ajax() check too, what if we want to load a form using AJAX?
|
51 |
$_options[$option_key]['#before'] = '<li class="wpt-form-item wpt-form-item-checkbox">';
|
@@ -57,6 +62,7 @@ class WPToolset_Field_Checkboxes extends FieldFactory
|
|
57 |
$metaform = array(
|
58 |
'#type' => 'checkboxes',
|
59 |
'#options' => $_options,
|
|
|
60 |
);
|
61 |
if ( is_admin() ) {
|
62 |
$metaform['#title'] = $this->getTitle();
|
4 |
*
|
5 |
* @author Srdjan
|
6 |
*
|
7 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.checkboxes.php $
|
8 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
9 |
+
* $LastChangedRevision: 1012704 $
|
10 |
+
* $LastChangedBy: iworks $
|
11 |
*
|
12 |
*/
|
13 |
|
20 |
global $post;
|
21 |
$value = $this->getValue();
|
22 |
$data = $this->getData();
|
23 |
+
$name = $this->getName();
|
24 |
$form = array();
|
25 |
$_options = array();
|
26 |
if (isset($data['options'])) {
|
37 |
//if (!$checked&&isset($value)&&!empty($value)&&is_array($value)&&in_array($option['value'],$value)) {
|
38 |
// $checked=true;
|
39 |
//}
|
40 |
+
|
41 |
$_options[$option_key] = array(
|
42 |
'#value' => $option['value'],
|
43 |
'#title' => $option['title'],
|
46 |
'#name' => $option['name']."[]",
|
47 |
//'#inline' => true,
|
48 |
);
|
49 |
+
|
50 |
+
if ( isset( $option['data-value'] ) ) {
|
51 |
+
//Fixing https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188528502/comments
|
52 |
+
$_options[$option_key]['#attributes'] = array('data-value' => $option['data-value']);
|
53 |
+
}
|
54 |
|
55 |
if ( !is_admin() ) {// TODO maybe add a doing_ajax() check too, what if we want to load a form using AJAX?
|
56 |
$_options[$option_key]['#before'] = '<li class="wpt-form-item wpt-form-item-checkbox">';
|
62 |
$metaform = array(
|
63 |
'#type' => 'checkboxes',
|
64 |
'#options' => $_options,
|
65 |
+
'#description' => $this->getDescription(),
|
66 |
);
|
67 |
if ( is_admin() ) {
|
68 |
$metaform['#title'] = $this->getTitle();
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.colorpicker.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -272,7 +272,6 @@ class WPToolset_Forms_Conditional
|
|
272 |
* @return boolean
|
273 |
*/
|
274 |
public static function evaluateCustom( $evaluate, $values ) {
|
275 |
-
|
276 |
$evaluate = trim( stripslashes( $evaluate ) );
|
277 |
// Check dates
|
278 |
$evaluate = wpv_filter_parse_date( $evaluate );
|
272 |
* @return boolean
|
273 |
*/
|
274 |
public static function evaluateCustom( $evaluate, $values ) {
|
|
|
275 |
$evaluate = trim( stripslashes( $evaluate ) );
|
276 |
// Check dates
|
277 |
$evaluate = wpv_filter_parse_date( $evaluate );
|
@@ -1,15 +1,16 @@
|
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
|
|
3 |
|
4 |
/**
|
5 |
* Description of class
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Credaudio extends WPToolset_Field_Credfile
|
@@ -20,13 +21,7 @@ class WPToolset_Field_Credaudio extends WPToolset_Field_Credfile
|
|
20 |
{
|
21 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
22 |
$validation = $this->getValidationData();
|
23 |
-
$validation
|
24 |
-
'args' => array(
|
25 |
-
'extension',
|
26 |
-
'16svx|2sf|8svx|aac|aif|aifc|aiff|amr|ape|asf|ast|au|aup|band|brstm|bwf|cdda|cust|dsf|dwd|flac|gsf|gsm|gym|it|jam|la|ly|m4a|m4p|mid|minipsf|mng|mod|mp1|mp2|mp3|mp4|mpc|mscz|mt2|mus|niff|nsf|off|ofr|ofs|ogg|ots|pac|psf|psf2|psflib|ptb|qsf|ra|raw|rka|rm|rmj|s3m|shn|sib|sid|smp|spc|spx|ssf|swa|tta|txm|usf|vgm|voc|vox|vqf|wav|wma|wv|xm|ym',
|
27 |
-
),
|
28 |
-
'message' => __( 'You can add only audio.', 'wpv-views' ),
|
29 |
-
);
|
30 |
$this->setValidationData($validation);
|
31 |
return parent::metaform();
|
32 |
}
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
3 |
+
require_once 'class.audio.php';
|
4 |
|
5 |
/**
|
6 |
* Description of class
|
7 |
*
|
8 |
* @author Srdjan
|
9 |
*
|
10 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.credaudio.php $
|
11 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
12 |
+
* $LastChangedRevision: 1012704 $
|
13 |
+
* $LastChangedBy: iworks $
|
14 |
*
|
15 |
*/
|
16 |
class WPToolset_Field_Credaudio extends WPToolset_Field_Credfile
|
21 |
{
|
22 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
23 |
$validation = $this->getValidationData();
|
24 |
+
$validation = WPToolset_Field_Audio::addTypeValidation($validation);
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
$this->setValidationData($validation);
|
26 |
return parent::metaform();
|
27 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.credfile.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
@@ -1,15 +1,16 @@
|
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
|
|
3 |
|
4 |
/**
|
5 |
* Description of class
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Credimage extends WPToolset_Field_Credfile
|
@@ -18,13 +19,7 @@ class WPToolset_Field_Credimage extends WPToolset_Field_Credfile
|
|
18 |
{
|
19 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
20 |
$validation = $this->getValidationData();
|
21 |
-
$validation
|
22 |
-
'args' => array(
|
23 |
-
'extension',
|
24 |
-
'jpg|jpeg|gif|png|bmp|webp',
|
25 |
-
),
|
26 |
-
'message' => __( 'You can add only images.', 'wpv-views' ),
|
27 |
-
);
|
28 |
$this->setValidationData($validation);
|
29 |
return parent::metaform();
|
30 |
}
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
3 |
+
require_once 'class.image.php';
|
4 |
|
5 |
/**
|
6 |
* Description of class
|
7 |
*
|
8 |
* @author Srdjan
|
9 |
*
|
10 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.credimage.php $
|
11 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
12 |
+
* $LastChangedRevision: 1012704 $
|
13 |
+
* $LastChangedBy: iworks $
|
14 |
*
|
15 |
*/
|
16 |
class WPToolset_Field_Credimage extends WPToolset_Field_Credfile
|
19 |
{
|
20 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
21 |
$validation = $this->getValidationData();
|
22 |
+
$validation = WPToolset_Field_Image::addTypeValidation($validation);
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
$this->setValidationData($validation);
|
24 |
return parent::metaform();
|
25 |
}
|
@@ -1,15 +1,16 @@
|
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
|
|
3 |
|
4 |
/**
|
5 |
* Description of class
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Credvideo extends WPToolset_Field_Credfile
|
@@ -20,13 +21,7 @@ class WPToolset_Field_Credvideo extends WPToolset_Field_Credfile
|
|
20 |
{
|
21 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
22 |
$validation = $this->getValidationData();
|
23 |
-
$validation
|
24 |
-
'args' => array(
|
25 |
-
'extension',
|
26 |
-
'3gp|aaf|asf|avchd|avi|cam|dat|dsh|fla|flr|flv|m1v|m2v|m4v|mng|mp4|mxf|nsv|ogg|rm|roq|smi|sol|svi|swf|wmv|wrap|mkv|mov|mpe|mpeg|mpg',
|
27 |
-
),
|
28 |
-
'message' => __( 'You can add only video.', 'wpv-views' ),
|
29 |
-
);
|
30 |
$this->setValidationData($validation);
|
31 |
return parent::metaform();
|
32 |
}
|
1 |
<?php
|
2 |
require_once 'class.credfile.php';
|
3 |
+
require_once 'class.video.php';
|
4 |
|
5 |
/**
|
6 |
* Description of class
|
7 |
*
|
8 |
* @author Srdjan
|
9 |
*
|
10 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.credvideo.php $
|
11 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
12 |
+
* $LastChangedRevision: 1012704 $
|
13 |
+
* $LastChangedBy: iworks $
|
14 |
*
|
15 |
*/
|
16 |
class WPToolset_Field_Credvideo extends WPToolset_Field_Credfile
|
21 |
{
|
22 |
//TODO: check if this getValidationData does not break PHP Validation _cakePHP required file.
|
23 |
$validation = $this->getValidationData();
|
24 |
+
$validation = WPToolset_Field_Video::addTypeValidation($validation);
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
$this->setValidationData($validation);
|
26 |
return parent::metaform();
|
27 |
}
|
@@ -1,226 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
* Custom conditinal evaluation class.
|
4 |
-
*
|
5 |
-
* Uses common functions.
|
6 |
-
* Cloned wpv_condition() moved here to release it from post meta.
|
7 |
-
* Instead getting post meta, array of values is passed (like get_post_custom())
|
8 |
-
* and those values are used for evaluation.
|
9 |
-
*
|
10 |
-
* Known bugs with wpv_condition()
|
11 |
-
* - field names with slash, like '$my-field' fails regex
|
12 |
-
* - some mixed statements fail, like '($t = 'show') OR ($t > 10)' cause using
|
13 |
-
* string and num comparation
|
14 |
-
*/
|
15 |
-
require_once WPTOOLSET_COMMON_PATH . '/functions.php';
|
16 |
-
require_once WPTOOLSET_COMMON_PATH . '/wpv-filter-date-embedded.php';
|
17 |
-
require_once WPTOOLSET_COMMON_PATH . '/wplogger.php';
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Description of class
|
21 |
-
*/
|
22 |
-
class WPToolset_Forms_Custom_Conditional
|
23 |
-
{
|
24 |
-
|
25 |
-
private $__evaluate, $__fields, $__values;
|
26 |
-
|
27 |
-
public function __construct( $evaluate, $fields, $values ){
|
28 |
-
$this->__evaluate = $evaluate;
|
29 |
-
$this->__fields = $fields;
|
30 |
-
$this->__values = $values;
|
31 |
-
}
|
32 |
-
|
33 |
-
public function evaluate(){
|
34 |
-
return $this->_wpv_condition( $this->__evaluate, $this->__fields );
|
35 |
-
}
|
36 |
-
|
37 |
-
protected function _getValue( $key ){
|
38 |
-
return isset( $this->__values[$key] ) ? $this->__values[$key] : null;
|
39 |
-
}
|
40 |
-
|
41 |
-
/**
|
42 |
-
* Condition function to evaluate and display given block based on expressions
|
43 |
-
*
|
44 |
-
* Supported actions and symbols:
|
45 |
-
*
|
46 |
-
* Integer and floating-point numbers
|
47 |
-
* Math operators: +, -, *, /
|
48 |
-
* Comparison operators: <, >, =, <=, >=, !=
|
49 |
-
* Boolean operators: AND, OR, NOT
|
50 |
-
* Nested expressions - several levels of brackets
|
51 |
-
* Variables defined as shortcode parameters starting with a dollar sign
|
52 |
-
* empty() function that checks for blank or non-existing fields
|
53 |
-
*
|
54 |
-
* @global type $wplogger
|
55 |
-
* @param type $evaluate
|
56 |
-
* @param type $fields
|
57 |
-
* @return type
|
58 |
-
*/
|
59 |
-
protected function _wpv_condition( $evaluate, $fields ){
|
60 |
-
|
61 |
-
global $wplogger;
|
62 |
-
|
63 |
-
$logging_string = "Original expression: " . $evaluate;
|
64 |
-
|
65 |
-
add_filter( 'wpv-extra-condition-filters', 'wpv_add_time_functions' );
|
66 |
-
$evaluate = apply_filters( 'wpv-extra-condition-filters', $evaluate );
|
67 |
-
|
68 |
-
// evaluate empty() statements for variables
|
69 |
-
// $empties = preg_match_all( "/empty\(\s*\\$(\w+)\s*\)/", $evaluate,
|
70 |
-
// $matches );
|
71 |
-
$empties = preg_match_all( "/empty\(\s*\\$([\w_-]+)\s*\)/", $evaluate,
|
72 |
-
$matches );
|
73 |
-
|
74 |
-
if ( $empties && $empties > 0 ) {
|
75 |
-
for ( $i = 0; $i < $empties; $i++ ) {
|
76 |
-
$match_var = $this->_getValue( $fields[$matches[1][$i]] );
|
77 |
-
$is_empty = '1=0';
|
78 |
-
|
79 |
-
// mark as empty only nulls and ""
|
80 |
-
// if ( is_null( $match_var ) || strlen( $match_var ) == 0 ) {
|
81 |
-
if ( is_null( $match_var ) || ( is_string( $match_var ) && strlen( $match_var ) == 0 ) || ( is_array( $match_var ) && empty( $match_var ) ) ) {
|
82 |
-
$is_empty = '1=1';
|
83 |
-
}
|
84 |
-
|
85 |
-
$evaluate = str_replace( $matches[0][$i], $is_empty, $evaluate );
|
86 |
-
}
|
87 |
-
}
|
88 |
-
|
89 |
-
// find variables that are to be used as strings.
|
90 |
-
// eg '$f1'
|
91 |
-
// will replace $f1 with the actual field value
|
92 |
-
$strings_count = preg_match_all( '/(\'[\$\w^\']*\')/', $evaluate,
|
93 |
-
$matches );
|
94 |
-
if ( $strings_count && $strings_count > 0 ) {
|
95 |
-
for ( $i = 0; $i < $strings_count; $i++ ) {
|
96 |
-
$string = $matches[1][$i];
|
97 |
-
// remove single quotes from string literals to get value only
|
98 |
-
$string = (strpos( $string, '\'' ) === 0) ? substr( $string, 1,
|
99 |
-
strlen( $string ) - 2 ) : $string;
|
100 |
-
if ( strpos( $string, '$' ) === 0 ) {
|
101 |
-
$variable_name = substr( $string, 1 ); // omit dollar sign
|
102 |
-
if ( isset( $fields[$variable_name] ) ) {
|
103 |
-
$string = $this->_getValue( $fields[$variable_name] );
|
104 |
-
$evaluate = str_replace( $matches[1][$i],
|
105 |
-
"'" . $string . "'", $evaluate );
|
106 |
-
}
|
107 |
-
}
|
108 |
-
}
|
109 |
-
}
|
110 |
-
|
111 |
-
// find string variables and evaluate
|
112 |
-
// $strings_count = preg_match_all( '/((\$\w+)|(\'[^\']*\'))\s*([\!<>\=]+)\s*((\$\w+)|(\'[^\']*\'))/',
|
113 |
-
// $evaluate, $matches );
|
114 |
-
$strings_count = preg_match_all( '/((\$[\w_-]+)|([\'\d][^\']*[\'\d]))\s*([\!<>\=]+)\s*((\$[\w_-]+)|([\'\d]*[\'\d]))/',
|
115 |
-
$evaluate, $matches );
|
116 |
-
|
117 |
-
// get all string comparisons - with variables and/or literals
|
118 |
-
if ( $strings_count && $strings_count > 0 ) {
|
119 |
-
for ( $i = 0; $i < $strings_count; $i++ ) {
|
120 |
-
|
121 |
-
// get both sides and sign
|
122 |
-
$first_string = $matches[1][$i];
|
123 |
-
$second_string = $matches[5][$i];
|
124 |
-
$math_sign = $matches[4][$i];
|
125 |
-
|
126 |
-
// remove single quotes from string literals to get value only
|
127 |
-
$first_string = (strpos( $first_string, '\'' ) === 0) ? substr( $first_string,
|
128 |
-
1, strlen( $first_string ) - 2 ) : $first_string;
|
129 |
-
$second_string = (strpos( $second_string, '\'' ) === 0) ? substr( $second_string,
|
130 |
-
1, strlen( $second_string ) - 2 ) : $second_string;
|
131 |
-
|
132 |
-
// replace variables with text representation
|
133 |
-
if ( strpos( $first_string, '$' ) === 0 ) {
|
134 |
-
$variable_name = substr( $first_string, 1 ); // omit dollar sign
|
135 |
-
if ( isset( $fields[$variable_name] ) ) {
|
136 |
-
$first_string = $this->_getValue( $fields[$variable_name] );
|
137 |
-
} else {
|
138 |
-
$first_string = '';
|
139 |
-
}
|
140 |
-
}
|
141 |
-
if ( strpos( $second_string, '$' ) === 0 ) {
|
142 |
-
$variable_name = substr( $second_string, 1 );
|
143 |
-
if ( isset( $fields[$variable_name] ) ) {
|
144 |
-
$second_string = $this->_getValue( $fields[$variable_name] );
|
145 |
-
} else {
|
146 |
-
$second_string = '';
|
147 |
-
}
|
148 |
-
}
|
149 |
-
|
150 |
-
// don't do string comparison if variables are numbers
|
151 |
-
if ( (is_numeric( $first_string ) && !is_numeric( $second_string ))
|
152 |
-
|| (!is_numeric( $first_string ) && is_numeric( $second_string )) ) {
|
153 |
-
$evaluate = str_replace( $matches[0][$i], '1=0',
|
154 |
-
$evaluate );
|
155 |
-
} else if ( !(is_numeric( $first_string ) && is_numeric( $second_string )) ) {
|
156 |
-
// compare string and return true or false
|
157 |
-
$compared_str_result = wpv_compare_strings( $first_string,
|
158 |
-
$second_string, $math_sign );
|
159 |
-
|
160 |
-
if ( $compared_str_result ) {
|
161 |
-
$evaluate = str_replace( $matches[0][$i], '1=1',
|
162 |
-
$evaluate );
|
163 |
-
} else {
|
164 |
-
$evaluate = str_replace( $matches[0][$i], '1=0',
|
165 |
-
$evaluate );
|
166 |
-
}
|
167 |
-
} else {
|
168 |
-
$evaluate = str_replace( $matches[1][$i], $first_string,
|
169 |
-
$evaluate );
|
170 |
-
$evaluate = str_replace( $matches[5][$i], $second_string,
|
171 |
-
$evaluate );
|
172 |
-
}
|
173 |
-
}
|
174 |
-
}
|
175 |
-
|
176 |
-
// find remaining strings that maybe numeric values.
|
177 |
-
// This handles 1='1'
|
178 |
-
$strings_count = preg_match_all( '/(\'[^\']*\')/', $evaluate, $matches );
|
179 |
-
if ( $strings_count && $strings_count > 0 ) {
|
180 |
-
for ( $i = 0; $i < $strings_count; $i++ ) {
|
181 |
-
$string = $matches[1][$i];
|
182 |
-
// remove single quotes from string literals to get value only
|
183 |
-
$string = (strpos( $string, '\'' ) === 0) ? substr( $string, 1,
|
184 |
-
strlen( $string ) - 2 ) : $string;
|
185 |
-
if ( is_numeric( $string ) ) {
|
186 |
-
$evaluate = str_replace( $matches[1][$i], $string, $evaluate );
|
187 |
-
}
|
188 |
-
}
|
189 |
-
}
|
190 |
-
|
191 |
-
|
192 |
-
// find all variable placeholders in expression
|
193 |
-
// $count = preg_match_all( '/\$(\w+)/', $evaluate, $matches );
|
194 |
-
$count = preg_match_all( '/\$([\w-_]+)/', $evaluate, $matches );
|
195 |
-
|
196 |
-
$logging_string .= "; Variable placeholders: " . var_export( $matches[1],
|
197 |
-
true );
|
198 |
-
|
199 |
-
// replace all variables with their values listed as shortcode parameters
|
200 |
-
if ( $count && $count > 0 ) {
|
201 |
-
// sort array by length desc, fix str_replace incorrect replacement
|
202 |
-
$matches[1] = wpv_sort_matches_by_length( $matches[1] );
|
203 |
-
|
204 |
-
foreach ( $matches[1] as $match ) {
|
205 |
-
if ( isset( $fields[$match] ) ) {
|
206 |
-
$meta = $this->_getValue( $fields[$match] );
|
207 |
-
if ( empty( $meta ) ) {
|
208 |
-
$meta = "0";
|
209 |
-
}
|
210 |
-
} else {
|
211 |
-
$meta = "0";
|
212 |
-
}
|
213 |
-
$evaluate = str_replace( '$' . $match, $meta, $evaluate );
|
214 |
-
}
|
215 |
-
}
|
216 |
-
|
217 |
-
$logging_string .= "; End evaluated expression: " . $evaluate;
|
218 |
-
|
219 |
-
$wplogger->log( $logging_string, WPLOG_DEBUG );
|
220 |
-
// evaluate the prepared expression using the custom eval script
|
221 |
-
$result = wpv_evaluate_expression( $evaluate );
|
222 |
-
|
223 |
-
// return true, false or error string to the conditional caller
|
224 |
-
return $result;
|
225 |
-
}
|
226 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -61,6 +61,7 @@ class WPToolset_Field_Date extends FieldFactory
|
|
61 |
$datepicker = $hour = $minute = null;
|
62 |
$timestamp = false;
|
63 |
$readonly = false;
|
|
|
64 |
if ( is_admin() ) {
|
65 |
// In this case, getValue returns the timestamp stored as postmeta value on the database
|
66 |
// So we compose $timestamp, $datepicker, $hour and $minute based on that value
|
@@ -111,6 +112,7 @@ class WPToolset_Field_Date extends FieldFactory
|
|
111 |
// A false value would render the hidden field with a value of 1
|
112 |
$timestamp = '';
|
113 |
$datepicker = null;
|
|
|
114 |
}
|
115 |
|
116 |
$def_class = 'js-wpt-date';
|
@@ -133,7 +135,12 @@ class WPToolset_Field_Date extends FieldFactory
|
|
133 |
$title .= '*';
|
134 |
}
|
135 |
|
136 |
-
$attr_visible = array(
|
|
|
|
|
|
|
|
|
|
|
137 |
$attr_hidden = array('class' => $def_class_aux, 'data-ts' => $timestamp, 'data-wpt-type' => 'date' );
|
138 |
|
139 |
if ( isset( $data['attribute'] ) && isset( $data['attribute']['placeholder'] ) ) {
|
@@ -147,6 +154,7 @@ class WPToolset_Field_Date extends FieldFactory
|
|
147 |
'#attributes' => $attr_visible,
|
148 |
'#name' => '',
|
149 |
'#value' => $datepicker,
|
|
|
150 |
);
|
151 |
$form[] = array(
|
152 |
'#type' => 'hidden',
|
@@ -194,11 +202,12 @@ class WPToolset_Field_Date extends FieldFactory
|
|
194 |
}
|
195 |
$hour_element = array(
|
196 |
'#type' => 'select',
|
197 |
-
'#
|
198 |
'#options' => $options,
|
199 |
'#default_value' => $hour,
|
200 |
'#name' => $this->getName() . '[hour]',
|
201 |
'#inline' => true,
|
|
|
202 |
);
|
203 |
if ( !empty( $attributes_hour_minute ) ) {
|
204 |
$hour_element['#attributes'] = $attributes_hour_minute;
|
@@ -216,17 +225,24 @@ class WPToolset_Field_Date extends FieldFactory
|
|
216 |
}
|
217 |
$minute_element = array(
|
218 |
'#type' => 'select',
|
219 |
-
'#
|
220 |
'#options' => $options,
|
221 |
'#default_value' => $minute,
|
222 |
'#name' => $this->getName() . '[minute]',
|
223 |
'#inline' => true,
|
|
|
224 |
);
|
225 |
if ( !empty( $attributes_hour_minute ) ) {
|
226 |
$minute_element['#attributes'] = $attributes_hour_minute;
|
227 |
}
|
228 |
$form[] = $minute_element;
|
229 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
return $form;
|
232 |
}
|
61 |
$datepicker = $hour = $minute = null;
|
62 |
$timestamp = false;
|
63 |
$readonly = false;
|
64 |
+
$clear_date_showhide = '';
|
65 |
if ( is_admin() ) {
|
66 |
// In this case, getValue returns the timestamp stored as postmeta value on the database
|
67 |
// So we compose $timestamp, $datepicker, $hour and $minute based on that value
|
112 |
// A false value would render the hidden field with a value of 1
|
113 |
$timestamp = '';
|
114 |
$datepicker = null;
|
115 |
+
$clear_date_showhide = ' style="display:none"';
|
116 |
}
|
117 |
|
118 |
$def_class = 'js-wpt-date';
|
135 |
$title .= '*';
|
136 |
}
|
137 |
|
138 |
+
$attr_visible = array(
|
139 |
+
'class' => $def_class,
|
140 |
+
'style' => 'display:inline;width:150px;position:relative;z-index:20;',
|
141 |
+
'readonly' => 'readonly',
|
142 |
+
'title' => esc_attr( __( 'Select date', 'wpv-views' ) )
|
143 |
+
);
|
144 |
$attr_hidden = array('class' => $def_class_aux, 'data-ts' => $timestamp, 'data-wpt-type' => 'date' );
|
145 |
|
146 |
if ( isset( $data['attribute'] ) && isset( $data['attribute']['placeholder'] ) ) {
|
154 |
'#attributes' => $attr_visible,
|
155 |
'#name' => '',
|
156 |
'#value' => $datepicker,
|
157 |
+
'#inline' => true,
|
158 |
);
|
159 |
$form[] = array(
|
160 |
'#type' => 'hidden',
|
202 |
}
|
203 |
$hour_element = array(
|
204 |
'#type' => 'select',
|
205 |
+
'#before' => '<span class="wpt-form-label">' . __( 'Hour', 'wpv-views' ) . '</span>',
|
206 |
'#options' => $options,
|
207 |
'#default_value' => $hour,
|
208 |
'#name' => $this->getName() . '[hour]',
|
209 |
'#inline' => true,
|
210 |
+
'#attributes' => array( 'title' => esc_attr( __( 'Select hour', 'wpv-views' ) ) ),
|
211 |
);
|
212 |
if ( !empty( $attributes_hour_minute ) ) {
|
213 |
$hour_element['#attributes'] = $attributes_hour_minute;
|
225 |
}
|
226 |
$minute_element = array(
|
227 |
'#type' => 'select',
|
228 |
+
'#before' => '<span class="wpt-form-label">' . __( 'Minute', 'wpv-views' ) . '</span>',
|
229 |
'#options' => $options,
|
230 |
'#default_value' => $minute,
|
231 |
'#name' => $this->getName() . '[minute]',
|
232 |
'#inline' => true,
|
233 |
+
'#attributes' => array( 'title' => esc_attr( __( 'Select minute', 'wpv-views' ) ) ),
|
234 |
);
|
235 |
if ( !empty( $attributes_hour_minute ) ) {
|
236 |
$minute_element['#attributes'] = $attributes_hour_minute;
|
237 |
}
|
238 |
$form[] = $minute_element;
|
239 |
}
|
240 |
+
|
241 |
+
$form[] = array(
|
242 |
+
'#type' => 'markup',
|
243 |
+
'#inline' => true,
|
244 |
+
'#markup' => '<input type="button"' . $clear_date_showhide . ' class="button button-secondary js-wpt-date-clear wpt-date-clear" value="' . esc_attr( __( 'Clear date', 'wpv-views' ) ) . '" />',
|
245 |
+
);
|
246 |
|
247 |
return $form;
|
248 |
}
|
@@ -36,8 +36,10 @@ class WPToolset_Field_Date_Scripts
|
|
36 |
( ( isset($_GET['page']) && ($_GET['page'] == 'wpcf-edit-usermeta' || $_GET['page'] == 'wpcf-edit') ) ||
|
37 |
//for edit pages including profile pages
|
38 |
($pagenow == 'profile.php' || $pagenow == 'post-new.php' || $pagenow == 'user-edit.php' || $pagenow == 'user-new.php' || $pagenow == 'post.php' || $pagenow == 'admin-ajax.php') && is_admin() ) ){
|
39 |
-
|
40 |
-
|
|
|
|
|
41 |
}
|
42 |
$this->localization_slug = false;
|
43 |
}
|
@@ -53,12 +55,6 @@ class WPToolset_Field_Date_Scripts
|
|
53 |
array(),
|
54 |
WPTOOLSET_FORMS_VERSION
|
55 |
);
|
56 |
-
wp_register_style(
|
57 |
-
'wptoolset-field-date',
|
58 |
-
WPTOOLSET_FORMS_RELPATH . '/css/wpt-jquery-ui/jquery-ui-1.9.2.custom.min.css',
|
59 |
-
array('wptoolset-field-datepicker'),
|
60 |
-
WPTOOLSET_FORMS_VERSION
|
61 |
-
);
|
62 |
/**
|
63 |
* scripts
|
64 |
*/
|
@@ -105,7 +101,7 @@ class WPToolset_Field_Date_Scripts
|
|
105 |
/**
|
106 |
* styles
|
107 |
*/
|
108 |
-
wp_enqueue_style( 'wptoolset-field-
|
109 |
/**
|
110 |
* scripts
|
111 |
*/
|
@@ -126,7 +122,7 @@ class WPToolset_Field_Date_Scripts
|
|
126 |
'yearMax' => self::timetodate( self::$_maxtimestamp, 'Y' ),
|
127 |
'ajaxurl' => admin_url('admin-ajax.php', null),
|
128 |
'readonly' => esc_js( __( 'This is a readonly date input', 'wpv-views' ) ),
|
129 |
-
|
130 |
);
|
131 |
wp_localize_script( 'wptoolset-field-date', 'wptDateData', $js_data );
|
132 |
if ( $this->localization_slug && !wp_script_is( 'jquery-ui-datepicker-local-' . $this->localization_slug ) ) {
|
36 |
( ( isset($_GET['page']) && ($_GET['page'] == 'wpcf-edit-usermeta' || $_GET['page'] == 'wpcf-edit') ) ||
|
37 |
//for edit pages including profile pages
|
38 |
($pagenow == 'profile.php' || $pagenow == 'post-new.php' || $pagenow == 'user-edit.php' || $pagenow == 'user-new.php' || $pagenow == 'post.php' || $pagenow == 'admin-ajax.php') && is_admin() ) ){
|
39 |
+
add_action( 'admin_enqueue_scripts', array( $this,'date_enqueue_scripts' ) );
|
40 |
+
if ( defined('CRED_FE_VERSION')) {
|
41 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'date_enqueue_scripts' ) );
|
42 |
+
}
|
43 |
}
|
44 |
$this->localization_slug = false;
|
45 |
}
|
55 |
array(),
|
56 |
WPTOOLSET_FORMS_VERSION
|
57 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
/**
|
59 |
* scripts
|
60 |
*/
|
101 |
/**
|
102 |
* styles
|
103 |
*/
|
104 |
+
wp_enqueue_style( 'wptoolset-field-datepicker' );
|
105 |
/**
|
106 |
* scripts
|
107 |
*/
|
122 |
'yearMax' => self::timetodate( self::$_maxtimestamp, 'Y' ),
|
123 |
'ajaxurl' => admin_url('admin-ajax.php', null),
|
124 |
'readonly' => esc_js( __( 'This is a readonly date input', 'wpv-views' ) ),
|
125 |
+
'readonly_image' => $calendar_image_readonly,
|
126 |
);
|
127 |
wp_localize_script( 'wptoolset-field-date', 'wptDateData', $js_data );
|
128 |
if ( $this->localization_slug && !wp_script_is( 'jquery-ui-datepicker-local-' . $this->localization_slug ) ) {
|
@@ -27,10 +27,10 @@
|
|
27 |
* @link http://enlimbo.net/forms
|
28 |
* @author srdjan <srdjan@enlimbo.net>
|
29 |
*
|
30 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.eforms.php $
|
31 |
-
* $LastChangedDate: 2014-
|
32 |
-
* $LastChangedRevision:
|
33 |
-
* $LastChangedBy:
|
34 |
*
|
35 |
*/
|
36 |
|
@@ -393,14 +393,14 @@ class Enlimbo_Forms
|
|
393 |
// Asterisk
|
394 |
$element['#title'] .= '*';
|
395 |
}
|
396 |
-
$element['#attributes']['data-wpt-validate'] =
|
397 |
$element['#validate'] ) ) );
|
398 |
$element['#attributes']['data-wpt-field-title'] = esc_js( $custom_field_title );
|
399 |
}
|
400 |
if ( $element['#type'] == 'radios' && !empty( $element['#options'] ) ) {
|
401 |
foreach ( $element['#options'] as &$option ) {
|
402 |
if ( !empty( $option['#validate'] ) ) {
|
403 |
-
$option['#attributes']['data-wpt-validate'] =
|
404 |
$option['#validate'] ) ) );
|
405 |
$option['#attributes']['data-wpt-field-title'] = esc_js( $custom_field_title );
|
406 |
}
|
27 |
* @link http://enlimbo.net/forms
|
28 |
* @author srdjan <srdjan@enlimbo.net>
|
29 |
*
|
30 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.eforms.php $
|
31 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
32 |
+
* $LastChangedRevision: 1012704 $
|
33 |
+
* $LastChangedBy: iworks $
|
34 |
*
|
35 |
*/
|
36 |
|
393 |
// Asterisk
|
394 |
$element['#title'] .= '*';
|
395 |
}
|
396 |
+
$element['#attributes']['data-wpt-validate'] = esc_html( self::json_encode( apply_filters( 'wptoolset_forms_field_js_validation_data_' . $this->_id,
|
397 |
$element['#validate'] ) ) );
|
398 |
$element['#attributes']['data-wpt-field-title'] = esc_js( $custom_field_title );
|
399 |
}
|
400 |
if ( $element['#type'] == 'radios' && !empty( $element['#options'] ) ) {
|
401 |
foreach ( $element['#options'] as &$option ) {
|
402 |
if ( !empty( $option['#validate'] ) ) {
|
403 |
+
$option['#attributes']['data-wpt-validate'] = esc_html( self::json_encode( apply_filters( 'wptoolset_forms_field_js_validation_data_' . $this->_id,
|
404 |
$option['#validate'] ) ) );
|
405 |
$option['#attributes']['data-wpt-field-title'] = esc_js( $custom_field_title );
|
406 |
}
|
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.field_factory.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.field_factory.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.fieldconfig.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
if (!class_exists("FieldConfig")) {
|
@@ -68,11 +68,21 @@ if (!class_exists("FieldConfig")) {
|
|
68 |
$this->default_value = $field_arr['attr']['default'][0];
|
69 |
}
|
70 |
break;
|
71 |
-
|
72 |
case 'select':
|
73 |
-
|
74 |
-
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
case 'radios':
|
77 |
$this->default_value = $field_arr['attr']['default'];
|
78 |
break;
|
@@ -96,7 +106,7 @@ if (!class_exists("FieldConfig")) {
|
|
96 |
case 'checkboxes':
|
97 |
foreach ($attrs['actual_titles'] as $refvalue=>$title) {
|
98 |
$value = $attrs['actual_values'][$refvalue];
|
99 |
-
$arr[$refvalue] = array('value'=>$refvalue,'title'=>$title,'name'=>$name);
|
100 |
if ( in_array($refvalue, $attrs['default']) ) {
|
101 |
$arr[$refvalue]['checked'] = true;
|
102 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.fieldconfig.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
if (!class_exists("FieldConfig")) {
|
68 |
$this->default_value = $field_arr['attr']['default'][0];
|
69 |
}
|
70 |
break;
|
71 |
+
|
72 |
case 'select':
|
73 |
+
if (isset($field_arr['attr']['multiple'])) {
|
74 |
+
//Multiselect
|
75 |
+
if (isset($field_arr['value']))
|
76 |
+
foreach ($field_arr['value'] as $value) {
|
77 |
+
if (isset($value[0])) {
|
78 |
+
$this->default_value = $value;
|
79 |
+
break;
|
80 |
+
}
|
81 |
+
}
|
82 |
+
} else
|
83 |
+
$this->default_value = isset( $field_arr['attr']['actual_value'][0] )? $field_arr['attr']['actual_value'][0] : null;
|
84 |
+
break;
|
85 |
+
|
86 |
case 'radios':
|
87 |
$this->default_value = $field_arr['attr']['default'];
|
88 |
break;
|
106 |
case 'checkboxes':
|
107 |
foreach ($attrs['actual_titles'] as $refvalue=>$title) {
|
108 |
$value = $attrs['actual_values'][$refvalue];
|
109 |
+
$arr[$refvalue] = array('value'=>$refvalue,'title'=>$title,'name'=>$name,'data-value'=>$value);
|
110 |
if ( in_array($refvalue, $attrs['default']) ) {
|
111 |
$arr[$refvalue]['checked'] = true;
|
112 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.file.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
@@ -10,10 +10,10 @@ define( "CLASS_NAME_PREFIX", "WPToolset_Field_" );
|
|
10 |
* Creation Form Class
|
11 |
* @author onTheGo System
|
12 |
*
|
13 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.form_factory.php $
|
14 |
-
* $LastChangedDate: 2014-
|
15 |
-
* $LastChangedRevision:
|
16 |
-
* $LastChangedBy:
|
17 |
*
|
18 |
*
|
19 |
*/
|
@@ -127,7 +127,7 @@ class FormFactory extends FormAbstract
|
|
127 |
* (non-PHPdoc)
|
128 |
* @see classes/FormAbstract::createForm()
|
129 |
*/
|
130 |
-
public function createForm( $nameForm
|
131 |
if ( $this->formNameExists( $nameForm ) ) return;
|
132 |
$this->theForm->autoHandle( $nameForm, $this->form );
|
133 |
|
@@ -144,7 +144,7 @@ class FormFactory extends FormAbstract
|
|
144 |
* (non-PHPdoc)
|
145 |
* @see classes/FormAbstract::displayForm()
|
146 |
*/
|
147 |
-
public function displayForm( $nameForm
|
148 |
if ( $this->formNameExists( $nameForm ) ) return;
|
149 |
$myform = $this->theForm;
|
150 |
$this->theForm->autoHandle( $nameForm, $this->form );
|
@@ -338,10 +338,13 @@ class FormFactory extends FormAbstract
|
|
338 |
$field->getType()=='skype' )
|
339 |
)
|
340 |
{
|
341 |
-
|
|
|
|
|
342 |
if ($field->getType()=='skype') {
|
343 |
-
$field_value =
|
344 |
}
|
|
|
345 |
|
346 |
$_tmp = $field->getValidationData();
|
347 |
if (isset($_tmp['required']) &&
|
10 |
* Creation Form Class
|
11 |
* @author onTheGo System
|
12 |
*
|
13 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.form_factory.php $
|
14 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
15 |
+
* $LastChangedRevision: 1012704 $
|
16 |
+
* $LastChangedBy: iworks $
|
17 |
*
|
18 |
*
|
19 |
*/
|
127 |
* (non-PHPdoc)
|
128 |
* @see classes/FormAbstract::createForm()
|
129 |
*/
|
130 |
+
public function createForm( $nameForm /*= 'default'*/ ) {
|
131 |
if ( $this->formNameExists( $nameForm ) ) return;
|
132 |
$this->theForm->autoHandle( $nameForm, $this->form );
|
133 |
|
144 |
* (non-PHPdoc)
|
145 |
* @see classes/FormAbstract::displayForm()
|
146 |
*/
|
147 |
+
public function displayForm( $nameForm /*= 'default'*/ ) {
|
148 |
if ( $this->formNameExists( $nameForm ) ) return;
|
149 |
$myform = $this->theForm;
|
150 |
$this->theForm->autoHandle( $nameForm, $this->form );
|
338 |
$field->getType()=='skype' )
|
339 |
)
|
340 |
{
|
341 |
+
//https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188604193/comments
|
342 |
+
//added sanitize_text_field for sucuri warning php.backdoor.eval_POST.010
|
343 |
+
$field_value = isset($_POST[$field->getName()])?sanitize_text_field($_POST[$field->getName()]):"";
|
344 |
if ($field->getType()=='skype') {
|
345 |
+
$field_value = isset($_POST[$field->getName()]['skypename'])?sanitize_text_field($_POST[$field->getName()]['skypename']):"";
|
346 |
}
|
347 |
+
//##########################################################################################
|
348 |
|
349 |
$_tmp = $field->getValidationData();
|
350 |
if (isset($_tmp['required']) &&
|
@@ -6,37 +6,30 @@ require_once 'class.file.php';
|
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Image extends WPToolset_Field_File
|
16 |
{
|
17 |
public function metaform()
|
18 |
{
|
19 |
-
$
|
20 |
-
|
|
|
|
|
21 |
}
|
22 |
|
23 |
-
public static function
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
'args' => array(
|
34 |
-
'extension',
|
35 |
-
'jpg|jpeg|gif|png',
|
36 |
-
),
|
37 |
-
'message' => __( 'You can add only images.', 'wpv-views' ),
|
38 |
-
);
|
39 |
-
}
|
40 |
-
return $form;
|
41 |
-
}
|
42 |
}
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.image.php $
|
10 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
11 |
+
* $LastChangedRevision: 1012704 $
|
12 |
+
* $LastChangedBy: iworks $
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Image extends WPToolset_Field_File
|
16 |
{
|
17 |
public function metaform()
|
18 |
{
|
19 |
+
$validation = $this->getValidationData();
|
20 |
+
$validation = self::addTypeValidation($validation);
|
21 |
+
$this->setValidationData($validation);
|
22 |
+
return parent::metaform();
|
23 |
}
|
24 |
|
25 |
+
public static function addTypeValidation($validation) {
|
26 |
+
$validation['extension'] = array(
|
27 |
+
'args' => array(
|
28 |
+
'extension',
|
29 |
+
'jpg|jpeg|gif|png|bmp|webp',
|
30 |
+
),
|
31 |
+
'message' => __( 'You can add only images.', 'wpv-views' ),
|
32 |
+
);
|
33 |
+
return $validation;
|
34 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.password.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.radios.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -40,20 +40,21 @@ class WPToolset_Field_Recaptcha extends WPToolset_Field_Textfield
|
|
40 |
public function metaform() {
|
41 |
$form = array();
|
42 |
|
43 |
-
|
44 |
if ($this->pubkey || !is_admin()) {
|
45 |
try {
|
46 |
$capture = recaptcha_get_html($this->pubkey);
|
47 |
} catch(Exception $e ) {
|
|
|
48 |
if ( current_user_can( 'manage_options' ) ) {
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
}
|
|
|
53 |
}
|
54 |
}
|
55 |
|
56 |
-
|
57 |
$form[] = array(
|
58 |
'#type' => 'textfield',
|
59 |
'#title' => '',
|
40 |
public function metaform() {
|
41 |
$form = array();
|
42 |
|
43 |
+
$capture = '';
|
44 |
if ($this->pubkey || !is_admin()) {
|
45 |
try {
|
46 |
$capture = recaptcha_get_html($this->pubkey);
|
47 |
} catch(Exception $e ) {
|
48 |
+
//https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188424989/comments
|
49 |
if ( current_user_can( 'manage_options' ) ) {
|
50 |
+
$id_field = $this->getId();
|
51 |
+
$text = 'Caught exception: '. $e->getMessage();
|
52 |
+
$capture = "<label id=\"lbl_$id_field\" class=\"wpt-form-error\">$text</label><div style=\"clear:both;\"></div>";
|
53 |
}
|
54 |
+
//###########################################################################################
|
55 |
}
|
56 |
}
|
57 |
|
|
|
58 |
$form[] = array(
|
59 |
'#type' => 'textfield',
|
60 |
'#title' => '',
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Repetitive controller
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
* If field is repetitive
|
11 |
* - queues repetitive CSS and JS
|
2 |
/*
|
3 |
* Repetitive controller
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.repetitive.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
* If field is repetitive
|
11 |
* - queues repetitive CSS and JS
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -28,7 +28,7 @@ class WPToolset_Field_Select extends FieldFactory
|
|
28 |
foreach ( $data['options'] as $option ) {
|
29 |
$one_option_data = array(
|
30 |
'#value' => $option['value'],
|
31 |
-
'#title' => $option['title'],
|
32 |
);
|
33 |
/**
|
34 |
* add default value if needed
|
@@ -50,6 +50,16 @@ class WPToolset_Field_Select extends FieldFactory
|
|
50 |
if ( !empty( $value ) || $value == '0' ) {
|
51 |
$data['default_value'] = $value;
|
52 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
/**
|
54 |
* metaform
|
55 |
*/
|
@@ -59,8 +69,8 @@ class WPToolset_Field_Select extends FieldFactory
|
|
59 |
'#description' => $this->getDescription(),
|
60 |
'#name' => $this->getName(),
|
61 |
'#options' => $options,
|
62 |
-
'#default_value' =>
|
63 |
-
'#multiple' =>
|
64 |
'#validate' => $this->getValidationData(),
|
65 |
'#class' => 'form-inline',
|
66 |
'#repetitive' => $this->isRepetitive(),
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.select.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
28 |
foreach ( $data['options'] as $option ) {
|
29 |
$one_option_data = array(
|
30 |
'#value' => $option['value'],
|
31 |
+
'#title' => stripslashes($option['title']),
|
32 |
);
|
33 |
/**
|
34 |
* add default value if needed
|
50 |
if ( !empty( $value ) || $value == '0' ) {
|
51 |
$data['default_value'] = $value;
|
52 |
}
|
53 |
+
|
54 |
+
$is_multiselect = array_key_exists('multiple', $attributes) && 'multiple' == $attributes['multiple'];
|
55 |
+
$default_value = isset( $data['default_value'] ) ? $data['default_value'] : null;
|
56 |
+
//Fix https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/189219391/comments
|
57 |
+
if ($is_multiselect) {
|
58 |
+
$default_value = new RecursiveIteratorIterator(new RecursiveArrayIterator($default_value));
|
59 |
+
$default_value = iterator_to_array($default_value,false);
|
60 |
+
}
|
61 |
+
//##############################################################################################
|
62 |
+
|
63 |
/**
|
64 |
* metaform
|
65 |
*/
|
69 |
'#description' => $this->getDescription(),
|
70 |
'#name' => $this->getName(),
|
71 |
'#options' => $options,
|
72 |
+
'#default_value' => $default_value,
|
73 |
+
'#multiple' => $is_multiselect,
|
74 |
'#validate' => $this->getValidationData(),
|
75 |
'#class' => 'form-inline',
|
76 |
'#repetitive' => $this->isRepetitive(),
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.skype.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.textfield.php';
|
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.taxonomy.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -229,8 +229,9 @@ class WPToolset_Field_Taxonomy extends WPToolset_Field_Textfield
|
|
229 |
$style = sprintf( ' style="font-size:1.%dem;"', $font_size );
|
230 |
}
|
231 |
$content .= sprintf(
|
232 |
-
'<a href="#" class="wpt-taxonomy-popular-add js-wpt-taxonomy-popular-add" data-slug="%s" data-taxonomy="%s"%s>%s</a> ',
|
233 |
$term->slug,
|
|
|
234 |
$this->getName(),
|
235 |
$style,
|
236 |
$term->name
|
2 |
|
3 |
/**
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.taxonomy.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
229 |
$style = sprintf( ' style="font-size:1.%dem;"', $font_size );
|
230 |
}
|
231 |
$content .= sprintf(
|
232 |
+
'<a href="#" class="wpt-taxonomy-popular-add js-wpt-taxonomy-popular-add" data-slug="%s" data-name="%s" data-taxonomy="%s"%s>%s</a> ',
|
233 |
$term->slug,
|
234 |
+
$term->name,
|
235 |
$this->getName(),
|
236 |
$style,
|
237 |
$term->name
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.taxonomyhierarchical.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
|
@@ -34,6 +34,8 @@ class WPToolset_Field_Taxonomyhierarchical extends WPToolset_Field_Textfield
|
|
34 |
|
35 |
$all = $this->buildTerms(get_terms($this->getName(),array('hide_empty'=>0,'fields'=>'all')));
|
36 |
|
|
|
|
|
37 |
$childs=array();
|
38 |
$names=array();
|
39 |
foreach ($all as $term) {
|
@@ -43,6 +45,8 @@ class WPToolset_Field_Taxonomyhierarchical extends WPToolset_Field_Textfield
|
|
43 |
$childs[$term['parent']][]=$term['term_id'];
|
44 |
}
|
45 |
|
|
|
|
|
46 |
$this->childs = $childs;
|
47 |
$this->names = $names;
|
48 |
}
|
@@ -274,10 +278,9 @@ class WPToolset_Field_Taxonomyhierarchical extends WPToolset_Field_Textfield
|
|
274 |
|
275 |
private function buildCheckboxes( $index, &$childs, &$names, &$metaform, $level = 0, $parent = -1 )
|
276 |
{
|
277 |
-
|
278 |
if (isset($childs[$index])) {
|
279 |
$level_count = count( $childs[$index] );
|
280 |
-
|
281 |
$name = $names[$tid];
|
282 |
/**
|
283 |
* check for "checked"
|
@@ -304,28 +307,34 @@ class WPToolset_Field_Taxonomyhierarchical extends WPToolset_Field_Textfield
|
|
304 |
'#pattern' => '<BEFORE><PREFIX><ELEMENT><LABEL><ERROR><SUFFIX><DESCRIPTION><AFTER>'
|
305 |
);
|
306 |
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
}
|
319 |
-
}
|
320 |
-
|
321 |
$metaform[] = $item;
|
322 |
|
323 |
-
if ( isset( $childs[$tid] ) ) {
|
324 |
$metaform = $this->buildCheckboxes( $tid, $childs, $names, $metaform, $level + 1, $tid );
|
325 |
}
|
326 |
-
|
327 |
}
|
328 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
return $metaform;
|
330 |
}
|
331 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.taxonomyhierarchical.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
|
34 |
|
35 |
$all = $this->buildTerms(get_terms($this->getName(),array('hide_empty'=>0,'fields'=>'all')));
|
36 |
|
37 |
+
|
38 |
+
|
39 |
$childs=array();
|
40 |
$names=array();
|
41 |
foreach ($all as $term) {
|
45 |
$childs[$term['parent']][]=$term['term_id'];
|
46 |
}
|
47 |
|
48 |
+
// ksort($childs);
|
49 |
+
|
50 |
$this->childs = $childs;
|
51 |
$this->names = $names;
|
52 |
}
|
278 |
|
279 |
private function buildCheckboxes( $index, &$childs, &$names, &$metaform, $level = 0, $parent = -1 )
|
280 |
{
|
|
|
281 |
if (isset($childs[$index])) {
|
282 |
$level_count = count( $childs[$index] );
|
283 |
+
foreach ( $childs[$index] as $tkey => $tid ) {
|
284 |
$name = $names[$tid];
|
285 |
/**
|
286 |
* check for "checked"
|
307 |
'#pattern' => '<BEFORE><PREFIX><ELEMENT><LABEL><ERROR><SUFFIX><DESCRIPTION><AFTER>'
|
308 |
);
|
309 |
|
310 |
+
if ( $tkey == 0 ) {
|
311 |
+
if ($level > 0) {
|
312 |
+
$item['#before'] = '<li><ul class="wpt-form-set-children wpt-form-set-children-level-' . $level . '" data-level="' . $level . '"><li>';
|
313 |
+
} else {
|
314 |
+
$item['#before'] = '<ul class="wpt-form-set wpt-form-set-checkboxes wpt-form-set-checkboxes-' . $this->getName() . '" data-level="0"><li>';
|
315 |
+
}
|
316 |
+
}
|
317 |
+
if ( $tkey == ( $level_count - 1 ) ) {
|
318 |
+
$item['#after'] = '</li>';
|
319 |
+
}
|
320 |
+
|
|
|
|
|
|
|
321 |
$metaform[] = $item;
|
322 |
|
323 |
+
if ( isset( $childs[$tid] ) ) {
|
324 |
$metaform = $this->buildCheckboxes( $tid, $childs, $names, $metaform, $level + 1, $tid );
|
325 |
}
|
326 |
+
|
327 |
}
|
328 |
}
|
329 |
+
|
330 |
+
if (count($metaform)) {
|
331 |
+
if ($level == 0) {
|
332 |
+
$metaform[count($metaform) - 1]['#after'] .= '</ul>';
|
333 |
+
} else {
|
334 |
+
$metaform[count($metaform) - 1]['#after'] .= '</ul></li>';
|
335 |
+
}
|
336 |
+
}
|
337 |
+
|
338 |
return $metaform;
|
339 |
}
|
340 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.textarea.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once 'class.field_factory.php';
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
require_once "class.field_factory.php";
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.textfield.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
require_once "class.field_factory.php";
|
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* Types fields specific
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.types.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -194,7 +194,7 @@ class WPToolset_Types
|
|
194 |
$validation[$rule] = array(
|
195 |
'args' => isset( $settings['args'] ) ? array_unshift( $value,
|
196 |
$settings['args'] ) : array($value, true),
|
197 |
-
'message' => self::translate('field ' . $id . ' validation message ' . $rule, $settings['message'])
|
198 |
);
|
199 |
}
|
200 |
}
|
2 |
/**
|
3 |
* Types fields specific
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.types.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
194 |
$validation[$rule] = array(
|
195 |
'args' => isset( $settings['args'] ) ? array_unshift( $value,
|
196 |
$settings['args'] ) : array($value, true),
|
197 |
+
'message' => self::translate('field ' . $id . ' validation message ' . $rule, stripslashes( $settings['message']))
|
198 |
);
|
199 |
}
|
200 |
}
|
@@ -6,10 +6,10 @@ require_once 'class.file.php';
|
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL:
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Video extends WPToolset_Field_File
|
@@ -18,27 +18,20 @@ class WPToolset_Field_Video extends WPToolset_Field_File
|
|
18 |
|
19 |
public function metaform()
|
20 |
{
|
21 |
-
$
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
public static function setForm($form)
|
26 |
-
{
|
27 |
-
if ( !isset( $form[0] ) || !is_array($form[0] ) ) {
|
28 |
-
return $form;
|
29 |
-
}
|
30 |
-
if ( !array_key_exists( '#validate', $form[0] ) ) {
|
31 |
-
$form[0]['#validate'] = array();
|
32 |
-
}
|
33 |
-
if ( !array_key_exists( 'extension', $form[0]['#validate'] ) ) {
|
34 |
-
$form[0]['#validate']['extension'] = array(
|
35 |
-
'args' => array(
|
36 |
-
'extension',
|
37 |
-
'3gp|aaf|asf|avchd|avi|cam|dat|dsh|fla|flr|flv|m1v|m2v|m4v|mng|mp4|mxf|nsv|ogg|rm|roq|smi|sol|svi|swf|wmv|wrap|mkv|mov|mpe|mpeg|mpg',
|
38 |
-
),
|
39 |
-
'message' => __( 'You can add only video.', 'wpv-views' ),
|
40 |
-
);
|
41 |
-
}
|
42 |
-
return $form;
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.video.php $
|
10 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
11 |
+
* $LastChangedRevision: 1012704 $
|
12 |
+
* $LastChangedBy: iworks $
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Video extends WPToolset_Field_File
|
18 |
|
19 |
public function metaform()
|
20 |
{
|
21 |
+
$validation = $this->getValidationData();
|
22 |
+
$validation = self::addTypeValidation($validation);
|
23 |
+
$this->setValidationData($validation);
|
24 |
+
return parent::metaform();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
+
|
27 |
+
public static function addTypeValidation($validation) {
|
28 |
+
$validation['extension'] = array(
|
29 |
+
'args' => array(
|
30 |
+
'extension',
|
31 |
+
'3gp|aaf|asf|avchd|avi|cam|dat|dsh|fla|flr|flv|m1v|m2v|m4v|mng|mp4|mxf|nsv|ogg|rm|roq|smi|sol|svi|swf|wmv|wrap|mkv|mov|mpe|mpeg|mpg',
|
32 |
+
),
|
33 |
+
'message' => __( 'You can add only video.', 'wpv-views' ),
|
34 |
+
);
|
35 |
+
return $validation;
|
36 |
+
}
|
37 |
}
|
@@ -6,10 +6,10 @@ require_once 'class.textarea.php';
|
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/classes/class.wysiwyg.php $
|
10 |
-
* $LastChangedDate: 2014-
|
11 |
-
* $LastChangedRevision:
|
12 |
-
* $LastChangedBy:
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Wysiwyg extends WPToolset_Field_Textarea
|
@@ -39,15 +39,11 @@ class WPToolset_Field_Wysiwyg extends WPToolset_Field_Textarea
|
|
39 |
}
|
40 |
|
41 |
protected function _editor(&$attributes)
|
42 |
-
{
|
43 |
-
if (isset($attributes['readonly'])&&$attributes['readonly']=='readonly') {
|
44 |
-
add_filter( 'tiny_mce_before_init', function( $args ) {
|
45 |
-
// do you existing check for published here
|
46 |
-
if ( 1 == 1 )
|
47 |
-
$args['readonly'] = 1;
|
48 |
|
49 |
-
|
50 |
-
|
|
|
51 |
}
|
52 |
|
53 |
//EMERSON: Rewritten to set do_concat to TRUE so WordPress won't echo styles directly to the browser
|
@@ -77,4 +73,13 @@ class WPToolset_Field_Wysiwyg extends WPToolset_Field_Textarea
|
|
77 |
$wp_styles->do_concat=FALSE;
|
78 |
}
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
6 |
*
|
7 |
* @author Srdjan
|
8 |
*
|
9 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/classes/class.wysiwyg.php $
|
10 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
11 |
+
* $LastChangedRevision: 1012704 $
|
12 |
+
* $LastChangedBy: iworks $
|
13 |
*
|
14 |
*/
|
15 |
class WPToolset_Field_Wysiwyg extends WPToolset_Field_Textarea
|
39 |
}
|
40 |
|
41 |
protected function _editor(&$attributes)
|
42 |
+
{
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
+
|
45 |
+
if (isset($attributes['readonly'])&&$attributes['readonly']=='readonly') {
|
46 |
+
add_filter( 'tiny_mce_before_init', array(&$this, 'tiny_mce_before_init_callback'));
|
47 |
}
|
48 |
|
49 |
//EMERSON: Rewritten to set do_concat to TRUE so WordPress won't echo styles directly to the browser
|
73 |
$wp_styles->do_concat=FALSE;
|
74 |
}
|
75 |
|
76 |
+
/*RICCARDO: removed anonymous function for retrocompatibility */
|
77 |
+
public function tiny_mce_before_init_callback( $args ) {
|
78 |
+
// do you existing check for published here
|
79 |
+
if ( 1 == 1 )
|
80 |
+
$args['readonly'] = 1;
|
81 |
+
|
82 |
+
return $args;
|
83 |
+
}
|
84 |
+
|
85 |
}
|
@@ -1,179 +0,0 @@
|
|
1 |
-
|
2 |
-
.wpt-form-fieldset {
|
3 |
-
background-color: #ffffff;
|
4 |
-
padding: 0 15px 15px 15px;
|
5 |
-
border: 1px solid #cccccc;
|
6 |
-
border-color: #cccccc;
|
7 |
-
margin: 15px 0 25px 0;
|
8 |
-
}
|
9 |
-
.wpt-form-fieldset fieldset {
|
10 |
-
margin-bottom: 0;
|
11 |
-
}
|
12 |
-
.wpt-fields-form fieldset {
|
13 |
-
width: auto;
|
14 |
-
}
|
15 |
-
.wpt-form-fieldset legend {
|
16 |
-
font-weight: bold;
|
17 |
-
}
|
18 |
-
.wpt-form-fieldset .legend-collapsed {
|
19 |
-
padding-left: 15px;
|
20 |
-
background-image: url('../images/expand.png');
|
21 |
-
background-repeat: no-repeat;
|
22 |
-
background-position: 0px 2px;
|
23 |
-
cursor: pointer;
|
24 |
-
}
|
25 |
-
.wpt-form-fieldset .legend-expanded {
|
26 |
-
padding-left: 15px;
|
27 |
-
background-image: url('../images/collapse.png');
|
28 |
-
background-repeat: no-repeat;
|
29 |
-
background-position: 0px 3px;
|
30 |
-
cursor: pointer;
|
31 |
-
}
|
32 |
-
.wpt-form-fieldset .collapsed {
|
33 |
-
display: none;
|
34 |
-
}
|
35 |
-
.wpt-field {
|
36 |
-
margin-bottom: 15px;
|
37 |
-
}
|
38 |
-
.wpt-field-item {
|
39 |
-
margin-bottom: 10px;
|
40 |
-
}
|
41 |
-
.wpt-form-fieldset .wpt-form-item:first-child {
|
42 |
-
margin-top: 5px;
|
43 |
-
}
|
44 |
-
.wpt-form-submit {
|
45 |
-
margin-top: 15px;
|
46 |
-
}
|
47 |
-
.wpt-form-description {
|
48 |
-
font-size: 0.85em;
|
49 |
-
font-style: italic;
|
50 |
-
margin-bottom: 5px;
|
51 |
-
}
|
52 |
-
.wpt-form-description-fieldset {
|
53 |
-
font-size: 1em;
|
54 |
-
font-style: normal;
|
55 |
-
margin: 10px 0;
|
56 |
-
}
|
57 |
-
.wpt-form-textarea {
|
58 |
-
width: 100%;
|
59 |
-
}
|
60 |
-
.wpt-form-description-textarea,
|
61 |
-
.wpt-form-description-checkboxes,
|
62 |
-
.wpt-form-description-radios {
|
63 |
-
font-size: 1em;
|
64 |
-
font-style: normal;
|
65 |
-
margin-bottom: 5px;
|
66 |
-
}
|
67 |
-
.wpt-form-label {
|
68 |
-
white-space: nowrap;
|
69 |
-
}
|
70 |
-
.wpt-form-textfield-label,
|
71 |
-
.wpt-form-textarea-label {
|
72 |
-
font-size: 1em;
|
73 |
-
font-weight: bold;
|
74 |
-
display: block;
|
75 |
-
}
|
76 |
-
.wpt-form-title-checkboxes,
|
77 |
-
.wpt-form-title-radios,
|
78 |
-
.wpt-form-select-label {
|
79 |
-
font-size: 1em;
|
80 |
-
font-weight: bold;
|
81 |
-
}
|
82 |
-
.wpt-form-error {
|
83 |
-
background-color: #ffffe0;
|
84 |
-
border: 1px solid #e6db55;
|
85 |
-
padding: 5px 10px;
|
86 |
-
width: auto;
|
87 |
-
margin: 10px 0;
|
88 |
-
display: block;
|
89 |
-
}
|
90 |
-
input.wpt-form-error {
|
91 |
-
background-color: #F8F8F8;
|
92 |
-
border-color: Red !important;
|
93 |
-
}
|
94 |
-
.wpt-fields-form .ui-draggable .wpt-form-fieldset .wpt-form-fieldset legend {
|
95 |
-
cursor: pointer;
|
96 |
-
}
|
97 |
-
.wpt-fields-form .ui-sortable {
|
98 |
-
padding: 0 0 10px 0;
|
99 |
-
}
|
100 |
-
.wpt-fields-form .ui-sortable-placeholder {
|
101 |
-
border: 1px dashed #CCCCCC;
|
102 |
-
width: auto;
|
103 |
-
visibility: visible !important;
|
104 |
-
}
|
105 |
-
.wpt-form-fields-delete,
|
106 |
-
.wpt-fields-form-move-field {
|
107 |
-
float: left;
|
108 |
-
margin-top: 10px;
|
109 |
-
margin-top: 3px;
|
110 |
-
margin-right: 5px;
|
111 |
-
}
|
112 |
-
.wpt-fields-form-move-field {
|
113 |
-
cursor: move;
|
114 |
-
}
|
115 |
-
.wpt-fields-form .taxonomy-title {
|
116 |
-
margin-top: 10px;
|
117 |
-
font-style: italic;
|
118 |
-
}
|
119 |
-
.wpt-message {
|
120 |
-
padding: 0 0.6em;
|
121 |
-
border-radius: 3px 3px 3px 3px;
|
122 |
-
border-style: solid;
|
123 |
-
border-width: 1px;
|
124 |
-
margin: 1em 0 1em 0;
|
125 |
-
}
|
126 |
-
.wpt-error {
|
127 |
-
background-color: #FFEBE8;
|
128 |
-
border-color: #CC0000;
|
129 |
-
padding: 5px;
|
130 |
-
}
|
131 |
-
.wpt-hidden,
|
132 |
-
.wpt-hide {
|
133 |
-
display: none;
|
134 |
-
}
|
135 |
-
|
136 |
-
.wpt-form-label {
|
137 |
-
margin-bottom: 5px;
|
138 |
-
}
|
139 |
-
.wpt-form-description {
|
140 |
-
margin: 5px 0;
|
141 |
-
font-size: 1em;
|
142 |
-
}
|
143 |
-
img.ui-datepicker-trigger {
|
144 |
-
margin-left: 5px;
|
145 |
-
cursor: pointer;
|
146 |
-
}
|
147 |
-
.wpt-form-textfield,
|
148 |
-
.wpt-form-textarea {
|
149 |
-
width: 100%;
|
150 |
-
}
|
151 |
-
.wpt-cp-preview {
|
152 |
-
width: 22px;
|
153 |
-
height: 22px;
|
154 |
-
float: left;
|
155 |
-
border: 1px solid #BBBBBB;
|
156 |
-
}
|
157 |
-
.wpt-repdrag {
|
158 |
-
background-image: url('../images/move.png');
|
159 |
-
background-repeat: no-repeat;
|
160 |
-
background-position: 50% 50%;
|
161 |
-
width: 20px;
|
162 |
-
height: 22px;
|
163 |
-
float: left;
|
164 |
-
margin: 0 5px 0 0;
|
165 |
-
background-color: #F3F3F3;
|
166 |
-
border: 1px solid #BBBBBB;
|
167 |
-
cursor: move;
|
168 |
-
clear: both;
|
169 |
-
}
|
170 |
-
.wpt-repadd {
|
171 |
-
margin-top: 5px !important;
|
172 |
-
}
|
173 |
-
.wpt-repctl {
|
174 |
-
margin-top: 5px;
|
175 |
-
}
|
176 |
-
/* STRANGE */
|
177 |
-
#ui-datepicker-div {
|
178 |
-
display: none;
|
179 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,48 +0,0 @@
|
|
1 |
-
.ac_results {
|
2 |
-
padding: 0px;
|
3 |
-
border: 1px solid WindowFrame;
|
4 |
-
background-color: Window;
|
5 |
-
overflow: hidden;
|
6 |
-
}
|
7 |
-
|
8 |
-
.ac_results ul {
|
9 |
-
width: 100%;
|
10 |
-
list-style-position: outside;
|
11 |
-
list-style: none;
|
12 |
-
padding: 0;
|
13 |
-
margin: 0;
|
14 |
-
}
|
15 |
-
|
16 |
-
.ac_results iframe {
|
17 |
-
display:none;/*sorry for IE5*/
|
18 |
-
display/**/:block;/*sorry for IE5*/
|
19 |
-
position:absolute;
|
20 |
-
top:0;
|
21 |
-
left:0;
|
22 |
-
z-index:-1;
|
23 |
-
filter:mask();
|
24 |
-
width:3000px;
|
25 |
-
height:3000px;
|
26 |
-
}
|
27 |
-
|
28 |
-
.ac_results li {
|
29 |
-
margin: 0px;
|
30 |
-
padding: 2px 5px;
|
31 |
-
cursor: pointer;
|
32 |
-
display: block;
|
33 |
-
width: 100%;
|
34 |
-
font: menu;
|
35 |
-
font-size: 12px;
|
36 |
-
overflow: hidden;
|
37 |
-
}
|
38 |
-
|
39 |
-
/* changes for matches */
|
40 |
-
.ac_results li span{
|
41 |
-
float: right;
|
42 |
-
padding-right: 10px;
|
43 |
-
}
|
44 |
-
|
45 |
-
.ac_over {
|
46 |
-
background-color: Highlight;
|
47 |
-
color: HighlightText;
|
48 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,179 +0,0 @@
|
|
1 |
-
|
2 |
-
.wpt-form-fieldset {
|
3 |
-
background-color: #ffffff;
|
4 |
-
padding: 0 15px 15px 15px;
|
5 |
-
border: 1px solid #cccccc;
|
6 |
-
border-color: #cccccc;
|
7 |
-
margin: 15px 0 25px 0;
|
8 |
-
}
|
9 |
-
.wpt-form-fieldset fieldset {
|
10 |
-
margin-bottom: 0;
|
11 |
-
}
|
12 |
-
.wpt-fields-form fieldset {
|
13 |
-
width: auto;
|
14 |
-
}
|
15 |
-
.wpt-form-fieldset legend {
|
16 |
-
font-weight: bold;
|
17 |
-
}
|
18 |
-
.wpt-form-fieldset .legend-collapsed {
|
19 |
-
padding-left: 15px;
|
20 |
-
background-image: url('../images/expand.png');
|
21 |
-
background-repeat: no-repeat;
|
22 |
-
background-position: 0px 2px;
|
23 |
-
cursor: pointer;
|
24 |
-
}
|
25 |
-
.wpt-form-fieldset .legend-expanded {
|
26 |
-
padding-left: 15px;
|
27 |
-
background-image: url('../images/collapse.png');
|
28 |
-
background-repeat: no-repeat;
|
29 |
-
background-position: 0px 3px;
|
30 |
-
cursor: pointer;
|
31 |
-
}
|
32 |
-
.wpt-form-fieldset .collapsed {
|
33 |
-
display: none;
|
34 |
-
}
|
35 |
-
.wpt-field {
|
36 |
-
margin-bottom: 15px;
|
37 |
-
}
|
38 |
-
.wpt-field-item {
|
39 |
-
margin-bottom: 10px;
|
40 |
-
}
|
41 |
-
.wpt-form-fieldset .wpt-form-item:first-child {
|
42 |
-
margin-top: 5px;
|
43 |
-
}
|
44 |
-
.wpt-form-submit {
|
45 |
-
margin-top: 15px;
|
46 |
-
}
|
47 |
-
.wpt-form-description {
|
48 |
-
font-size: 0.85em;
|
49 |
-
font-style: italic;
|
50 |
-
margin-bottom: 5px;
|
51 |
-
}
|
52 |
-
.wpt-form-description-fieldset {
|
53 |
-
font-size: 1em;
|
54 |
-
font-style: normal;
|
55 |
-
margin: 10px 0;
|
56 |
-
}
|
57 |
-
.wpt-form-textarea {
|
58 |
-
width: 100%;
|
59 |
-
}
|
60 |
-
.wpt-form-description-textarea,
|
61 |
-
.wpt-form-description-checkboxes,
|
62 |
-
.wpt-form-description-radios {
|
63 |
-
font-size: 1em;
|
64 |
-
font-style: normal;
|
65 |
-
margin-bottom: 5px;
|
66 |
-
}
|
67 |
-
.wpt-form-label {
|
68 |
-
white-space: nowrap;
|
69 |
-
}
|
70 |
-
.wpt-form-textfield-label,
|
71 |
-
.wpt-form-textarea-label {
|
72 |
-
font-size: 1em;
|
73 |
-
font-weight: bold;
|
74 |
-
display: block;
|
75 |
-
}
|
76 |
-
.wpt-form-title-checkboxes,
|
77 |
-
.wpt-form-title-radios,
|
78 |
-
.wpt-form-select-label {
|
79 |
-
font-size: 1em;
|
80 |
-
font-weight: bold;
|
81 |
-
}
|
82 |
-
.wpt-form-error {
|
83 |
-
background-color: #ffffe0;
|
84 |
-
border: 1px solid #e6db55;
|
85 |
-
padding: 5px 10px;
|
86 |
-
width: auto;
|
87 |
-
margin: 10px 0;
|
88 |
-
display: block;
|
89 |
-
}
|
90 |
-
input.wpt-form-error {
|
91 |
-
background-color: #F8F8F8;
|
92 |
-
border-color: Red !important;
|
93 |
-
}
|
94 |
-
.wpt-fields-form .ui-draggable .wpt-form-fieldset .wpt-form-fieldset legend {
|
95 |
-
cursor: pointer;
|
96 |
-
}
|
97 |
-
.wpt-fields-form .ui-sortable {
|
98 |
-
padding: 0 0 10px 0;
|
99 |
-
}
|
100 |
-
.wpt-fields-form .ui-sortable-placeholder {
|
101 |
-
border: 1px dashed #CCCCCC;
|
102 |
-
width: auto;
|
103 |
-
visibility: visible !important;
|
104 |
-
}
|
105 |
-
.wpt-form-fields-delete,
|
106 |
-
.wpt-fields-form-move-field {
|
107 |
-
float: left;
|
108 |
-
margin-top: 10px;
|
109 |
-
margin-top: 3px;
|
110 |
-
margin-right: 5px;
|
111 |
-
}
|
112 |
-
.wpt-fields-form-move-field {
|
113 |
-
cursor: move;
|
114 |
-
}
|
115 |
-
.wpt-fields-form .taxonomy-title {
|
116 |
-
margin-top: 10px;
|
117 |
-
font-style: italic;
|
118 |
-
}
|
119 |
-
.wpt-message {
|
120 |
-
padding: 0 0.6em;
|
121 |
-
border-radius: 3px 3px 3px 3px;
|
122 |
-
border-style: solid;
|
123 |
-
border-width: 1px;
|
124 |
-
margin: 1em 0 1em 0;
|
125 |
-
}
|
126 |
-
.wpt-error {
|
127 |
-
background-color: #FFEBE8;
|
128 |
-
border-color: #CC0000;
|
129 |
-
padding: 5px;
|
130 |
-
}
|
131 |
-
.wpt-hidden,
|
132 |
-
.wpt-hide {
|
133 |
-
display: none;
|
134 |
-
}
|
135 |
-
|
136 |
-
.wpt-form-label {
|
137 |
-
margin-bottom: 5px;
|
138 |
-
}
|
139 |
-
.wpt-form-description {
|
140 |
-
margin: 5px 0;
|
141 |
-
font-size: 1em;
|
142 |
-
}
|
143 |
-
img.ui-datepicker-trigger {
|
144 |
-
margin-left: 5px;
|
145 |
-
cursor: pointer;
|
146 |
-
}
|
147 |
-
.wpt-form-textfield,
|
148 |
-
.wpt-form-textarea {
|
149 |
-
width: 100%;
|
150 |
-
}
|
151 |
-
.wpt-cp-preview {
|
152 |
-
width: 22px;
|
153 |
-
height: 22px;
|
154 |
-
float: left;
|
155 |
-
border: 1px solid #BBBBBB;
|
156 |
-
}
|
157 |
-
.wpt-repdrag {
|
158 |
-
background-image: url('../images/move.png');
|
159 |
-
background-repeat: no-repeat;
|
160 |
-
background-position: 50% 50%;
|
161 |
-
width: 20px;
|
162 |
-
height: 22px;
|
163 |
-
float: left;
|
164 |
-
margin: 0 5px 0 0;
|
165 |
-
background-color: #F3F3F3;
|
166 |
-
border: 1px solid #BBBBBB;
|
167 |
-
cursor: move;
|
168 |
-
clear: both;
|
169 |
-
}
|
170 |
-
.wpt-repadd {
|
171 |
-
margin-top: 5px !important;
|
172 |
-
}
|
173 |
-
.wpt-repctl {
|
174 |
-
margin-top: 5px;
|
175 |
-
}
|
176 |
-
/* STRANGE */
|
177 |
-
#ui-datepicker-div {
|
178 |
-
display: none;
|
179 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,5 +0,0 @@
|
|
1 |
-
img.wpt-credfile-preview,
|
2 |
-
img.wpt-credfile-preview-upload {
|
3 |
-
height: 150px;
|
4 |
-
width: auto;
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
@@ -1,19 +0,0 @@
|
|
1 |
-
|
2 |
-
.wpt-file-preview img {
|
3 |
-
border: 1px solid #A0A0A0;
|
4 |
-
height: 50px;
|
5 |
-
margin-top: 10px;
|
6 |
-
width: auto;
|
7 |
-
}
|
8 |
-
.wpt-file .textfield,
|
9 |
-
.wpt-image .textfield {
|
10 |
-
width: 70%;
|
11 |
-
}
|
12 |
-
#media-upload {
|
13 |
-
background: none;
|
14 |
-
}
|
15 |
-
#media-upload #media-search {
|
16 |
-
height: auto;
|
17 |
-
margin: 0;
|
18 |
-
position: static;
|
19 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,19 +0,0 @@
|
|
1 |
-
.wpt-skype .button {
|
2 |
-
display: block;
|
3 |
-
}
|
4 |
-
#wpt-skype-edit-button-popup h3 {
|
5 |
-
clear: both;
|
6 |
-
}
|
7 |
-
#wpt-skype-edit-button-popup .button-secondary {
|
8 |
-
display: block;
|
9 |
-
clear: both;
|
10 |
-
margin-top: 80px;
|
11 |
-
}
|
12 |
-
#wpt-skype-edit-button-popup div {
|
13 |
-
float: left;
|
14 |
-
margin-right: 25px;
|
15 |
-
}
|
16 |
-
#wpt-skype-edit-button-popup input {
|
17 |
-
margin-top: 5px;
|
18 |
-
vertical-align: top;
|
19 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,33 +0,0 @@
|
|
1 |
-
.tagchecklist {
|
2 |
-
margin-left:65px;
|
3 |
-
}
|
4 |
-
|
5 |
-
.tagchecklist span {
|
6 |
-
cursor: default;
|
7 |
-
display: block;
|
8 |
-
float: left;
|
9 |
-
font-size: 11px;
|
10 |
-
line-height: 1.8em;
|
11 |
-
margin-right: 25px;
|
12 |
-
white-space: nowrap;
|
13 |
-
}
|
14 |
-
|
15 |
-
.tagchecklist span a {
|
16 |
-
background: url("../images/xit.gif") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
|
17 |
-
}
|
18 |
-
|
19 |
-
.tagchecklist span a:hover {
|
20 |
-
background: url("../images/xit.gif") no-repeat scroll -10px 0 rgba(0, 0, 0, 0);
|
21 |
-
}
|
22 |
-
|
23 |
-
.ntdelbutton {
|
24 |
-
cursor: pointer;
|
25 |
-
display: block;
|
26 |
-
float: left;
|
27 |
-
height: 10px;
|
28 |
-
margin: 4px 0 0 -10px;
|
29 |
-
overflow: hidden;
|
30 |
-
position: absolute;
|
31 |
-
text-indent: -9999px;
|
32 |
-
width: 10px;
|
33 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File without changes
|
File without changes
|
@@ -10,35 +10,35 @@
|
|
10 |
|
11 |
/* Layout helpers
|
12 |
----------------------------------*/
|
13 |
-
.ui-helper-hidden { display: none; }
|
14 |
-
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
15 |
-
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
16 |
-
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
17 |
-
.ui-helper-clearfix { display: inline-block; }
|
18 |
/* required comment for clearfix to work in Opera \*/
|
19 |
-
* html .ui-helper-clearfix { height:1%; }
|
20 |
-
.ui-helper-clearfix { display:block; }
|
21 |
/* end clearfix */
|
22 |
-
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
23 |
|
24 |
|
25 |
/* Interaction Cues
|
26 |
----------------------------------*/
|
27 |
-
.ui-state-disabled { cursor: default !important; }
|
28 |
|
29 |
|
30 |
/* Icons
|
31 |
----------------------------------*/
|
32 |
|
33 |
/* states and images */
|
34 |
-
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
35 |
|
36 |
|
37 |
/* Misc visuals
|
38 |
----------------------------------*/
|
39 |
|
40 |
/* Overlays */
|
41 |
-
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
42 |
|
43 |
|
44 |
/*
|
@@ -56,238 +56,65 @@
|
|
56 |
|
57 |
/* Component containers
|
58 |
----------------------------------*/
|
59 |
-
.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }
|
60 |
-
.ui-widget .ui-widget { font-size: 1em; }
|
61 |
-
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }
|
62 |
-
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
|
63 |
-
.ui-widget-content a { color: #333333; }
|
64 |
-
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
65 |
-
.ui-widget-header a { color: #ffffff; }
|
66 |
|
67 |
/* Interaction states
|
68 |
----------------------------------*/
|
69 |
-
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
|
70 |
-
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
|
71 |
-
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
|
72 |
-
.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; }
|
73 |
-
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
|
74 |
-
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }
|
75 |
-
.ui-widget :active { outline: none; }
|
76 |
|
77 |
/* Interaction Cues
|
78 |
----------------------------------*/
|
79 |
-
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }
|
80 |
-
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a
|
81 |
-
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
|
82 |
-
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
|
83 |
-
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
|
84 |
-
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
85 |
-
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,
|
86 |
-
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
87 |
|
88 |
/* Icons
|
89 |
----------------------------------*/
|
90 |
|
91 |
-
|
92 |
-
.ui-icon {
|
93 |
-
.ui-
|
94 |
-
.ui-
|
95 |
-
.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
96 |
-
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
97 |
-
.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
98 |
-
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
|
99 |
-
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }
|
100 |
-
|
101 |
-
/* positioning */
|
102 |
-
.ui-icon-carat-1-n { background-position: 0 0; }
|
103 |
-
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
104 |
-
.ui-icon-carat-1-e { background-position: -32px 0; }
|
105 |
-
.ui-icon-carat-1-se { background-position: -48px 0; }
|
106 |
-
.ui-icon-carat-1-s { background-position: -64px 0; }
|
107 |
-
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
108 |
-
.ui-icon-carat-1-w { background-position: -96px 0; }
|
109 |
-
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
110 |
-
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
111 |
-
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
112 |
-
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
113 |
-
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
114 |
-
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
115 |
-
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
116 |
-
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
117 |
-
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
118 |
-
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
119 |
-
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
120 |
-
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
121 |
-
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
122 |
-
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
123 |
-
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
124 |
-
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
125 |
-
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
126 |
-
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
127 |
-
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
128 |
-
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
129 |
-
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
130 |
-
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
131 |
-
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
132 |
-
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
133 |
-
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
134 |
-
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
135 |
-
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
136 |
-
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
137 |
-
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
138 |
-
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
139 |
-
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
140 |
-
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
141 |
-
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
142 |
-
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
143 |
-
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
144 |
-
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
145 |
-
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
146 |
-
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
147 |
-
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
148 |
-
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
149 |
-
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
150 |
-
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
151 |
-
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
152 |
-
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
153 |
-
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
154 |
-
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
155 |
-
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
156 |
-
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
157 |
-
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
158 |
-
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
159 |
-
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
160 |
-
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
161 |
-
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
162 |
-
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
163 |
-
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
164 |
-
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
165 |
-
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
166 |
-
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
167 |
-
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
168 |
-
.ui-icon-extlink { background-position: -32px -80px; }
|
169 |
-
.ui-icon-newwin { background-position: -48px -80px; }
|
170 |
-
.ui-icon-refresh { background-position: -64px -80px; }
|
171 |
-
.ui-icon-shuffle { background-position: -80px -80px; }
|
172 |
-
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
173 |
-
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
174 |
-
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
175 |
-
.ui-icon-folder-open { background-position: -16px -96px; }
|
176 |
-
.ui-icon-document { background-position: -32px -96px; }
|
177 |
-
.ui-icon-document-b { background-position: -48px -96px; }
|
178 |
-
.ui-icon-note { background-position: -64px -96px; }
|
179 |
-
.ui-icon-mail-closed { background-position: -80px -96px; }
|
180 |
-
.ui-icon-mail-open { background-position: -96px -96px; }
|
181 |
-
.ui-icon-suitcase { background-position: -112px -96px; }
|
182 |
-
.ui-icon-comment { background-position: -128px -96px; }
|
183 |
-
.ui-icon-person { background-position: -144px -96px; }
|
184 |
-
.ui-icon-print { background-position: -160px -96px; }
|
185 |
-
.ui-icon-trash { background-position: -176px -96px; }
|
186 |
-
.ui-icon-locked { background-position: -192px -96px; }
|
187 |
-
.ui-icon-unlocked { background-position: -208px -96px; }
|
188 |
-
.ui-icon-bookmark { background-position: -224px -96px; }
|
189 |
-
.ui-icon-tag { background-position: -240px -96px; }
|
190 |
-
.ui-icon-home { background-position: 0 -112px; }
|
191 |
-
.ui-icon-flag { background-position: -16px -112px; }
|
192 |
-
.ui-icon-calendar { background-position: -32px -112px; }
|
193 |
-
.ui-icon-cart { background-position: -48px -112px; }
|
194 |
-
.ui-icon-pencil { background-position: -64px -112px; }
|
195 |
-
.ui-icon-clock { background-position: -80px -112px; }
|
196 |
-
.ui-icon-disk { background-position: -96px -112px; }
|
197 |
-
.ui-icon-calculator { background-position: -112px -112px; }
|
198 |
-
.ui-icon-zoomin { background-position: -128px -112px; }
|
199 |
-
.ui-icon-zoomout { background-position: -144px -112px; }
|
200 |
-
.ui-icon-search { background-position: -160px -112px; }
|
201 |
-
.ui-icon-wrench { background-position: -176px -112px; }
|
202 |
-
.ui-icon-gear { background-position: -192px -112px; }
|
203 |
-
.ui-icon-heart { background-position: -208px -112px; }
|
204 |
-
.ui-icon-star { background-position: -224px -112px; }
|
205 |
-
.ui-icon-link { background-position: -240px -112px; }
|
206 |
-
.ui-icon-cancel { background-position: 0 -128px; }
|
207 |
-
.ui-icon-plus { background-position: -16px -128px; }
|
208 |
-
.ui-icon-plusthick { background-position: -32px -128px; }
|
209 |
-
.ui-icon-minus { background-position: -48px -128px; }
|
210 |
-
.ui-icon-minusthick { background-position: -64px -128px; }
|
211 |
-
.ui-icon-close { background-position: -80px -128px; }
|
212 |
-
.ui-icon-closethick { background-position: -96px -128px; }
|
213 |
-
.ui-icon-key { background-position: -112px -128px; }
|
214 |
-
.ui-icon-lightbulb { background-position: -128px -128px; }
|
215 |
-
.ui-icon-scissors { background-position: -144px -128px; }
|
216 |
-
.ui-icon-clipboard { background-position: -160px -128px; }
|
217 |
-
.ui-icon-copy { background-position: -176px -128px; }
|
218 |
-
.ui-icon-contact { background-position: -192px -128px; }
|
219 |
-
.ui-icon-image { background-position: -208px -128px; }
|
220 |
-
.ui-icon-video { background-position: -224px -128px; }
|
221 |
-
.ui-icon-script { background-position: -240px -128px; }
|
222 |
-
.ui-icon-alert { background-position: 0 -144px; }
|
223 |
-
.ui-icon-info { background-position: -16px -144px; }
|
224 |
-
.ui-icon-notice { background-position: -32px -144px; }
|
225 |
-
.ui-icon-help { background-position: -48px -144px; }
|
226 |
-
.ui-icon-check { background-position: -64px -144px; }
|
227 |
-
.ui-icon-bullet { background-position: -80px -144px; }
|
228 |
-
.ui-icon-radio-off { background-position: -96px -144px; }
|
229 |
-
.ui-icon-radio-on { background-position: -112px -144px; }
|
230 |
-
.ui-icon-pin-w { background-position: -128px -144px; }
|
231 |
-
.ui-icon-pin-s { background-position: -144px -144px; }
|
232 |
-
.ui-icon-play { background-position: 0 -160px; }
|
233 |
-
.ui-icon-pause { background-position: -16px -160px; }
|
234 |
-
.ui-icon-seek-next { background-position: -32px -160px; }
|
235 |
-
.ui-icon-seek-prev { background-position: -48px -160px; }
|
236 |
-
.ui-icon-seek-end { background-position: -64px -160px; }
|
237 |
-
.ui-icon-seek-start { background-position: -80px -160px; }
|
238 |
-
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
239 |
-
.ui-icon-seek-first { background-position: -80px -160px; }
|
240 |
-
.ui-icon-stop { background-position: -96px -160px; }
|
241 |
-
.ui-icon-eject { background-position: -112px -160px; }
|
242 |
-
.ui-icon-volume-off { background-position: -128px -160px; }
|
243 |
-
.ui-icon-volume-on { background-position: -144px -160px; }
|
244 |
-
.ui-icon-power { background-position: 0 -176px; }
|
245 |
-
.ui-icon-signal-diag { background-position: -16px -176px; }
|
246 |
-
.ui-icon-signal { background-position: -32px -176px; }
|
247 |
-
.ui-icon-battery-0 { background-position: -48px -176px; }
|
248 |
-
.ui-icon-battery-1 { background-position: -64px -176px; }
|
249 |
-
.ui-icon-battery-2 { background-position: -80px -176px; }
|
250 |
-
.ui-icon-battery-3 { background-position: -96px -176px; }
|
251 |
-
.ui-icon-circle-plus { background-position: 0 -192px; }
|
252 |
-
.ui-icon-circle-minus { background-position: -16px -192px; }
|
253 |
-
.ui-icon-circle-close { background-position: -32px -192px; }
|
254 |
-
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
255 |
-
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
256 |
-
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
257 |
-
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
258 |
-
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
259 |
-
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
260 |
-
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
261 |
-
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
262 |
-
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
263 |
-
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
264 |
-
.ui-icon-circle-check { background-position: -208px -192px; }
|
265 |
-
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
266 |
-
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
267 |
-
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
268 |
-
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
269 |
-
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
270 |
-
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
271 |
-
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
272 |
-
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
273 |
-
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
274 |
-
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
275 |
-
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
276 |
-
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
/* Misc visuals
|
280 |
----------------------------------*/
|
281 |
|
282 |
/* Corner radius */
|
283 |
-
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
|
284 |
-
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
|
285 |
-
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
|
286 |
-
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
287 |
|
288 |
/* Overlays */
|
289 |
-
.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
|
290 |
-
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
|
291 |
* jQuery UI Datepicker 1.8.14
|
292 |
*
|
293 |
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
10 |
|
11 |
/* Layout helpers
|
12 |
----------------------------------*/
|
13 |
+
.ui-datepicker.ui-helper-hidden { display: none; }
|
14 |
+
.ui-datepicker.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
15 |
+
.ui-datepicker.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
16 |
+
.ui-datepicker.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
17 |
+
.ui-datepicker.ui-helper-clearfix { display: inline-block; }
|
18 |
/* required comment for clearfix to work in Opera \*/
|
19 |
+
* html .ui-datepicker.ui-helper-clearfix { height:1%; }
|
20 |
+
.ui-datepicker.ui-helper-clearfix { display:block; }
|
21 |
/* end clearfix */
|
22 |
+
.ui-datepicker.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
23 |
|
24 |
|
25 |
/* Interaction Cues
|
26 |
----------------------------------*/
|
27 |
+
.ui-datepicker .ui-state-disabled { cursor: default !important; }
|
28 |
|
29 |
|
30 |
/* Icons
|
31 |
----------------------------------*/
|
32 |
|
33 |
/* states and images */
|
34 |
+
.ui-datepicker .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
35 |
|
36 |
|
37 |
/* Misc visuals
|
38 |
----------------------------------*/
|
39 |
|
40 |
/* Overlays */
|
41 |
+
.ui-datepicker .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
42 |
|
43 |
|
44 |
/*
|
56 |
|
57 |
/* Component containers
|
58 |
----------------------------------*/
|
59 |
+
.ui-datepicker.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }
|
60 |
+
.ui-datepicker.ui-widget .ui-widget { font-size: 1em; }
|
61 |
+
.ui-datepicker.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }
|
62 |
+
.ui-datepicker.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
|
63 |
+
/*.ui-datepicker.ui-widget-content a { color: #333333; }*/
|
64 |
+
.ui-datepicker .ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
65 |
+
.ui-datepicker .ui-widget-header a { color: #ffffff; }
|
66 |
|
67 |
/* Interaction states
|
68 |
----------------------------------*/
|
69 |
+
.ui-datepicker .ui-state-default, .ui-datepicker .ui-widget-content .ui-state-default, .ui-datepicker .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
|
70 |
+
.ui-datepicker .ui-state-default a, .ui-datepicker .ui-state-default a:link, .ui-datepicker .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
|
71 |
+
.ui-datepicker .ui-state-hover, .ui-datepicker .ui-widget-content .ui-state-hover, .ui-datepicker .ui-widget-header .ui-state-hover, .ui-datepicker .ui-state-focus, .ui-datepicker .ui-widget-content .ui-state-focus, .ui-datepicker .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
|
72 |
+
.ui-datepicker .ui-state-hover a, .ui-datepicker .ui-state-hover a:hover { color: #c77405; text-decoration: none; }
|
73 |
+
.ui-datepicker .ui-state-active, .ui-datepicker .ui-widget-content .ui-state-active, .ui-datepicker .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
|
74 |
+
.ui-datepicker .ui-state-active a, .ui-datepicker .ui-state-active a:link, .ui-datepicker .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }
|
75 |
+
.ui-datepicker .ui-widget :active { outline: none; }
|
76 |
|
77 |
/* Interaction Cues
|
78 |
----------------------------------*/
|
79 |
+
.ui-datepicker .ui-state-highlight, .ui-datepicker .ui-widget-content .ui-state-highlight, .ui-datepicker .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }
|
80 |
+
.ui-datepicker .ui-state-highlight a, .ui-datepicker .ui-widget-content .ui-state-highlight a, .ui-datepicker .ui-widget-header .ui-state-highlight a { color: #363636; }
|
81 |
+
.ui-datepicker .ui-state-error, .ui-datepicker .ui-widget-content .ui-state-error, .ui-datepicker .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
|
82 |
+
.ui-datepicker .ui-state-error a, .ui-datepicker .ui-widget-content .ui-state-error a, .ui-datepicker .ui-widget-header .ui-state-error a { color: #ffffff; }
|
83 |
+
.ui-datepicker .ui-state-error-text, .ui-datepicker .ui-widget-content .ui-state-error-text, .ui-datepicker .ui-widget-header .ui-state-error-text { color: #ffffff; }
|
84 |
+
.ui-datepicker .ui-priority-primary, .ui-datepicker .ui-widget-content .ui-priority-primary, .ui-datepicker .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
85 |
+
.ui-datepicker .ui-priority-secondary, .ui-datepicker .ui-widget-content .ui-priority-secondary, .ui-datepicker .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
86 |
+
.ui-datepicker .ui-state-disabled, .ui-datepicker .ui-widget-content .ui-state-disabled, .ui-datepicker .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
87 |
|
88 |
/* Icons
|
89 |
----------------------------------*/
|
90 |
|
91 |
+
.ui-datepicker .ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
92 |
+
.ui-datepicker .ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
93 |
+
.ui-datepicker .ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
94 |
+
.ui-datepicker .ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
+
/* states and images */
|
97 |
+
.ui-datepicker .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
|
98 |
+
.ui-datepicker .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
99 |
+
.ui-datepicker .ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
100 |
+
.ui-datepicker .ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
101 |
+
.ui-datepicker .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
102 |
+
.ui-datepicker .ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
103 |
+
.ui-datepicker .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
|
104 |
+
.ui-datepicker .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }
|
105 |
|
106 |
/* Misc visuals
|
107 |
----------------------------------*/
|
108 |
|
109 |
/* Corner radius */
|
110 |
+
.ui-datepicker .ui-corner-all, .ui-datepicker .ui-corner-top, .ui-datepicker .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
|
111 |
+
.ui-datepicker .ui-corner-all, .ui-datepicker .ui-corner-top, .ui-corner-right, .ui-datepicker .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
|
112 |
+
.ui-datepicker .ui-corner-all, .ui-datepicker .ui-corner-bottom, .ui-datepicker .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
|
113 |
+
.ui-datepicker .ui-corner-all, .ui-datepicker .ui-corner-bottom, .ui-datepicker .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
114 |
|
115 |
/* Overlays */
|
116 |
+
.ui-datepicker .ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
|
117 |
+
.ui-datepicker .ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
|
118 |
* jQuery UI Datepicker 1.8.14
|
119 |
*
|
120 |
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
@@ -182,7 +182,7 @@ img.ui-datepicker-trigger, img.ui-datepicker-readonly
|
|
182 |
,.wpt-credfile-undo {
|
183 |
margin: 0 5px 0 0;
|
184 |
}
|
185 |
-
.wpt-repdelete {
|
186 |
margin: 0 0 0 5px;
|
187 |
}
|
188 |
.wpt-repadd {
|
182 |
,.wpt-credfile-undo {
|
183 |
margin: 0 5px 0 0;
|
184 |
}
|
185 |
+
.wpt-repdelete, .wpt-date-clear {
|
186 |
margin: 0 0 0 5px;
|
187 |
}
|
188 |
.wpt-repadd {
|
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/common/toolset-forms/external/autocompleter.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/external/autocompleter.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
@@ -1,10 +1,10 @@
|
|
1 |
/**
|
2 |
* @see WPToolset_Forms_Conditional (classes/conditional.php)
|
3 |
*
|
4 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/
|
5 |
-
* $LastChangedDate: 2014-08-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
var wptCondTriggers = {}
|
@@ -160,20 +160,23 @@ var wptCond = (function($) {
|
|
160 |
case 'checkbox':
|
161 |
var $trigger_checked = $trigger.filter(':checked');
|
162 |
// If no checkbox was checked, the value should be empty
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
|
|
166 |
} else if ( $trigger_checked.length > 1 ) {
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
|
|
172 |
break;
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
default:
|
178 |
val = $trigger.val();
|
179 |
}
|
@@ -492,6 +495,8 @@ var wptCond = (function($) {
|
|
492 |
value = _getTriggerValue($trigger),
|
493 |
is_array = $trigger.length > 1 ? true : false;
|
494 |
|
|
|
|
|
495 |
if (typeof value != 'undefined') {
|
496 |
|
497 |
// make it a string by wrapping in quotes if
|
1 |
/**
|
2 |
* @see WPToolset_Forms_Conditional (classes/conditional.php)
|
3 |
*
|
4 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/Views-1.6.4-CRED-1.3.2-Types-1.6.4-Acces-1.2.3/toolset-forms/js/conditional.js $
|
5 |
+
* $LastChangedDate: 2014-08-27 17:35:29 +0200 (Wed, 27 Aug 2014) $
|
6 |
+
* $LastChangedRevision: 26501 $
|
7 |
+
* $LastChangedBy: riccardo $ Riccardo
|
8 |
*
|
9 |
*/
|
10 |
var wptCondTriggers = {}
|
160 |
case 'checkbox':
|
161 |
var $trigger_checked = $trigger.filter(':checked');
|
162 |
// If no checkbox was checked, the value should be empty
|
163 |
+
val = '';
|
164 |
+
//added data-value checking in order to fix
|
165 |
+
//https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188528502/comments
|
166 |
+
if ( $trigger_checked.length == 1 ) {
|
167 |
+
val = ($trigger_checked.attr('data-value'))?$trigger_checked.attr('data-value'):$trigger_checked.val();
|
168 |
} else if ( $trigger_checked.length > 1 ) {
|
169 |
+
val = [];
|
170 |
+
$trigger_checked.each(function() {
|
171 |
+
val.push(($(this).attr('data-value'))?$(this).attr('data-value'):$(this).val());
|
172 |
+
});
|
173 |
+
}
|
174 |
+
//#########################################################################################
|
175 |
break;
|
176 |
+
case 'file':
|
177 |
+
var $trigger_checked = $trigger.filter(':not([disabled])');
|
178 |
+
val = $trigger_checked.val();
|
179 |
+
break;
|
180 |
default:
|
181 |
val = $trigger.val();
|
182 |
}
|
495 |
value = _getTriggerValue($trigger),
|
496 |
is_array = $trigger.length > 1 ? true : false;
|
497 |
|
498 |
+
console.log(":::: AND THE VALUE??????", value, " for t: ", t, $trigger );
|
499 |
+
|
500 |
if (typeof value != 'undefined') {
|
501 |
|
502 |
// make it a string by wrapping in quotes if
|
@@ -10,6 +10,35 @@ var wptDate = (function($) {
|
|
10 |
}
|
11 |
});
|
12 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
|
15 |
function add(el)
|
@@ -29,17 +58,24 @@ var wptDate = (function($) {
|
|
29 |
return el.datepicker({
|
30 |
onSelect: function( dateText, inst ) {
|
31 |
// The el_aux element depends on the scenario: backend or frontend
|
32 |
-
var el_aux;
|
33 |
el.val('');
|
34 |
if ( el.closest('.js-wpt-field-item').length > 0 ) {
|
35 |
-
|
|
|
|
|
36 |
} else if ( el.closest('.wpt-repctl').length > 0 ) {
|
37 |
-
|
|
|
|
|
38 |
} else if ( el.closest('.js-wpt-field-items').length > 0 ) {
|
39 |
-
|
|
|
|
|
40 |
} else {
|
41 |
// This should be an empty object, but as we use the variable later we need to set it
|
42 |
el_aux = el.closest('.js-wpt-field-items');
|
|
|
43 |
}
|
44 |
var data = 'date=' + dateText;
|
45 |
data += '&date-format=' + wptDateData.dateFormatPhp;
|
@@ -50,6 +86,7 @@ var wptDate = (function($) {
|
|
50 |
el_aux.val( response['timestamp'] ).trigger('wptDateSelect');
|
51 |
}
|
52 |
el.val( response['display'] );
|
|
|
53 |
});
|
54 |
//el.trigger('wptDateSelect');
|
55 |
},
|
10 |
}
|
11 |
});
|
12 |
}
|
13 |
+
|
14 |
+
$(document).on( 'click', '.js-wpt-date-clear', function() {
|
15 |
+
var thiz = $(this), thiz_close, el, el_aux, el_select;
|
16 |
+
if ( thiz.closest('.js-wpt-field-item').length > 0 ) {
|
17 |
+
thiz_close = thiz.closest('.js-wpt-field-item');
|
18 |
+
el_aux = thiz_close.find('.js-wpt-date-auxiliar');
|
19 |
+
el = thiz_close.find('.js-wpt-date');
|
20 |
+
el_select = thiz_close.find('select');
|
21 |
+
} else if ( thiz.closest('.wpt-repctl').length > 0 ) {
|
22 |
+
thiz_close = thiz.closest('.wpt-repctl');
|
23 |
+
el_aux = thiz_close.find('.js-wpt-date-auxiliar');
|
24 |
+
el = thiz_close.find('.js-wpt-date');
|
25 |
+
el_select = thiz_close.find('select');
|
26 |
+
} else if ( thiz.closest('.js-wpt-field-items').length > 0 ) {
|
27 |
+
thiz_close = thiz.closest('.js-wpt-field-items');
|
28 |
+
el_aux = thiz_close.find('.js-wpt-date-auxiliar');
|
29 |
+
el = thiz_close.find('.js-wpt-date');
|
30 |
+
el_select = thiz_close.find('select');
|
31 |
+
} else {
|
32 |
+
// This should be an empty object, but as we use the variable later we need to set it
|
33 |
+
el_aux = thiz.closest('.js-wpt-field-items');
|
34 |
+
el = thiz.closest('.js-wpt-date');
|
35 |
+
el_select = thiz.closest('select');
|
36 |
+
}
|
37 |
+
el_aux.val( '' ).trigger( 'change' );
|
38 |
+
el.val( '' );
|
39 |
+
el_select.val('0');
|
40 |
+
thiz.hide();
|
41 |
+
});
|
42 |
}
|
43 |
|
44 |
function add(el)
|
58 |
return el.datepicker({
|
59 |
onSelect: function( dateText, inst ) {
|
60 |
// The el_aux element depends on the scenario: backend or frontend
|
61 |
+
var el_close, el_aux, el_clear;
|
62 |
el.val('');
|
63 |
if ( el.closest('.js-wpt-field-item').length > 0 ) {
|
64 |
+
el_close = el.closest('.js-wpt-field-item');
|
65 |
+
el_aux = el_close.find('.js-wpt-date-auxiliar');
|
66 |
+
el_clear = el_close.find('.js-wpt-date-clear');
|
67 |
} else if ( el.closest('.wpt-repctl').length > 0 ) {
|
68 |
+
el_close = el.closest('.wpt-repctl');
|
69 |
+
el_aux = el_close.find('.js-wpt-date-auxiliar');
|
70 |
+
el_clear = el_close.find('.js-wpt-date-clear');
|
71 |
} else if ( el.closest('.js-wpt-field-items').length > 0 ) {
|
72 |
+
el_close = el.closest('.js-wpt-field-items');
|
73 |
+
el_aux = el_close.find('.js-wpt-date-auxiliar');
|
74 |
+
el_clear = el_close.find('.js-wpt-date-clear');
|
75 |
} else {
|
76 |
// This should be an empty object, but as we use the variable later we need to set it
|
77 |
el_aux = el.closest('.js-wpt-field-items');
|
78 |
+
el_clear = el.closest('.js-wpt-date-clear');
|
79 |
}
|
80 |
var data = 'date=' + dateText;
|
81 |
data += '&date-format=' + wptDateData.dateFormatPhp;
|
86 |
el_aux.val( response['timestamp'] ).trigger('wptDateSelect');
|
87 |
}
|
88 |
el.val( response['display'] );
|
89 |
+
el_clear.show();
|
90 |
});
|
91 |
//el.trigger('wptDateSelect');
|
92 |
},
|
@@ -1,9 +1,9 @@
|
|
1 |
/**
|
2 |
*
|
3 |
-
* $HeadURL:
|
4 |
-
* $LastChangedDate: 2014-
|
5 |
-
* $LastChangedRevision:
|
6 |
-
* $LastChangedBy:
|
7 |
*
|
8 |
*/
|
9 |
var wptFile = (function($, w) {
|
1 |
/**
|
2 |
*
|
3 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/Views-1.6.4-CRED-1.3.2-Types-1.6.4-Acces-1.2.3/toolset-forms/js/file.js $
|
4 |
+
* $LastChangedDate: 2014-07-11 14:41:02 +0200 (Fri, 11 Jul 2014) $
|
5 |
+
* $LastChangedRevision: 24880 $
|
6 |
+
* $LastChangedBy: marcin $
|
7 |
*
|
8 |
*/
|
9 |
var wptFile = (function($, w) {
|
@@ -99,9 +99,10 @@ function showHideMostPopularTaxonomy(el)
|
|
99 |
|
100 |
jQuery(document).on('click', '.js-wpt-taxonomy-popular-add', function() {
|
101 |
var thiz = jQuery(this),
|
102 |
-
taxonomy = thiz.data( 'taxonomy' )
|
103 |
slug = thiz.data( 'slug' );
|
104 |
-
|
|
|
105 |
return false;
|
106 |
});
|
107 |
|
@@ -269,14 +270,16 @@ toolsetForms.CRED_taxonomy = function () {
|
|
269 |
self._initialize_taxonomy_buttons = function () {
|
270 |
// replace the taxonomy button placeholders with the actual buttons.
|
271 |
jQuery('.js-taxonomy-button-placeholder').each(function () {
|
272 |
-
var placeholder = jQuery(this)
|
273 |
-
|
274 |
-
|
|
|
275 |
|
276 |
if (buttons.length) {
|
277 |
|
278 |
buttons.each(function () {
|
279 |
var button = jQuery(this);
|
|
|
280 |
button.detach();
|
281 |
placeholder.replaceWith(button);
|
282 |
|
@@ -288,15 +291,17 @@ toolsetForms.CRED_taxonomy = function () {
|
|
288 |
button.show();
|
289 |
}
|
290 |
|
291 |
-
// move anything else that should be moved with the button
|
292 |
-
|
|
|
|
|
|
|
293 |
if (typeof selector !== 'undefined' && selector.length) {
|
294 |
var position = button;
|
295 |
-
|
296 |
-
jQuery(
|
297 |
-
jQuery(
|
298 |
-
|
299 |
-
});
|
300 |
}
|
301 |
})
|
302 |
}
|
@@ -310,49 +315,48 @@ toolsetForms.CRED_taxonomy = function () {
|
|
310 |
});
|
311 |
|
312 |
self.add_new_show_hide = function ( taxonomy, button ) {
|
313 |
-
|
314 |
self.hide_parent_button_if_no_terms( taxonomy, button );
|
315 |
-
|
316 |
-
|
317 |
-
jQuery(document).on('click', '.js-wpt-hierarchical-taxonomy-add-new', function() {
|
318 |
-
var thiz = jQuery(this),
|
319 |
-
taxonomy = thiz.data( 'taxonomy' );
|
320 |
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
|
|
|
|
|
|
333 |
|
334 |
self.terms_exist = function( taxonomy, button )
|
335 |
{
|
336 |
var build_what = jQuery(button).data('build_what'), parent = jQuery('[name="new_tax_select_' + taxonomy + '"]').val();
|
337 |
-
|
338 |
if ( build_what === 'checkboxes' ){
|
339 |
var first_checkbox = jQuery('input[name="' + taxonomy + '\[\]"][data-parent="' + parent + '"]:first');
|
340 |
-
|
341 |
return first_checkbox.length > 0;
|
342 |
}
|
343 |
else
|
344 |
{
|
345 |
var first_option = jQuery('select[name="' + taxonomy + '\[\]"]').find('option[data-parent="' + parent + '"]:first');
|
346 |
-
|
347 |
return first_option.length > 0;
|
348 |
}
|
349 |
|
350 |
return false;
|
351 |
};
|
352 |
|
|
|
353 |
self.hide_parent_button_if_no_terms = function( taxonomy, button )
|
354 |
{
|
355 |
-
|
|
|
|
|
356 |
jQuery('[name="new_tax_select_' + taxonomy + '"]').hide();
|
357 |
}
|
358 |
else
|
@@ -363,9 +367,11 @@ toolsetForms.CRED_taxonomy = function () {
|
|
363 |
|
364 |
|
365 |
self.add_taxonomy = function ( taxonomy, button ) {
|
|
|
366 |
var new_taxonomy = jQuery('[name="new_tax_text_' + taxonomy + '"]').val()
|
367 |
, build_what = jQuery(button).data('build_what');
|
368 |
-
new_taxonomy = new_taxonomy.trim()
|
|
|
369 |
if (new_taxonomy == '') {
|
370 |
return;
|
371 |
}
|
@@ -375,14 +381,14 @@ toolsetForms.CRED_taxonomy = function () {
|
|
375 |
jQuery('input[name="' + taxonomy + '\[\]"]').each (function () {
|
376 |
var id = jQuery(this).attr('id');
|
377 |
var label = jQuery('label[for="' + id + '"]');
|
378 |
-
|
379 |
if (new_taxonomy == label.text()) {
|
380 |
exists = true
|
381 |
self._flash_it(label);
|
382 |
}
|
383 |
});
|
384 |
|
385 |
-
jQuery('select[name="' + taxonomy + '\[\]"]').find('option').each (function () {
|
386 |
if (new_taxonomy == jQuery(this).text()) {
|
387 |
exists = true;
|
388 |
self._flash_it(jQuery(this));
|
@@ -398,9 +404,18 @@ toolsetForms.CRED_taxonomy = function () {
|
|
398 |
add_position = null,
|
399 |
add_before = true,
|
400 |
div_fields_wrap = jQuery('div[data-item_name="taxonomyhierarchical-'+taxonomy+'"]'),
|
401 |
-
|
402 |
|
403 |
if ( build_what === 'checkboxes' ){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
var new_checkbox = '<li><input data-parent="' + parent + '" class="wpt-form-checkbox form-checkbox checkbox" type="checkbox" name="' + taxonomy + '[]" checked="checked" value="' + new_taxonomy + '"></input><label>' + new_taxonomy + '</label></li>';
|
405 |
// find the first checkbox sharing parent
|
406 |
var first_checkbox = jQuery('input[name="' + taxonomy + '\[\]"][data-parent="' + parent + '"]:first');
|
@@ -509,3 +524,22 @@ toolsetForms.CRED_taxonomy = function () {
|
|
509 |
|
510 |
toolsetForms.cred_tax = new toolsetForms.CRED_taxonomy();
|
511 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
|
100 |
jQuery(document).on('click', '.js-wpt-taxonomy-popular-add', function() {
|
101 |
var thiz = jQuery(this),
|
102 |
+
taxonomy = thiz.data( 'taxonomy' );
|
103 |
slug = thiz.data( 'slug' );
|
104 |
+
_name = thiz.data( 'name' );
|
105 |
+
addTaxonomy(_name, taxonomy, this);
|
106 |
return false;
|
107 |
});
|
108 |
|
270 |
self._initialize_taxonomy_buttons = function () {
|
271 |
// replace the taxonomy button placeholders with the actual buttons.
|
272 |
jQuery('.js-taxonomy-button-placeholder').each(function () {
|
273 |
+
var placeholder = jQuery(this),
|
274 |
+
taxonomy = jQuery(this).data('taxonomy'),
|
275 |
+
buttons = jQuery('[name="sh_' + taxonomy + '"],[name="btn_' + taxonomy + '"]'),
|
276 |
+
selectors = [];
|
277 |
|
278 |
if (buttons.length) {
|
279 |
|
280 |
buttons.each(function () {
|
281 |
var button = jQuery(this);
|
282 |
+
|
283 |
button.detach();
|
284 |
placeholder.replaceWith(button);
|
285 |
|
291 |
button.show();
|
292 |
}
|
293 |
|
294 |
+
// move anything else that should be moved with the button
|
295 |
+
//Responsible of the issue https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188673095/comments
|
296 |
+
//changed selector
|
297 |
+
//var selector = button.data('after-selector');
|
298 |
+
selectors.push( button.data('after-selector') )
|
299 |
if (typeof selector !== 'undefined' && selector.length) {
|
300 |
var position = button;
|
301 |
+
jQuery('.' + selectors[0]).detach();
|
302 |
+
jQuery('.' + selectors[0]).insertAfter(button);
|
303 |
+
position = jQuery('.' + selectors[0]);
|
304 |
+
selectors.pop();
|
|
|
305 |
}
|
306 |
})
|
307 |
}
|
315 |
});
|
316 |
|
317 |
self.add_new_show_hide = function ( taxonomy, button ) {
|
318 |
+
jQuery('.js-wpt-hierarchical-taxonomy-add-new-' + taxonomy).toggle();
|
319 |
self.hide_parent_button_if_no_terms( taxonomy, button );
|
320 |
+
}
|
|
|
|
|
|
|
|
|
321 |
|
322 |
+
jQuery(document).on('click', '.js-wpt-hierarchical-taxonomy-add-new', function() {
|
323 |
+
var thiz = jQuery(this),
|
324 |
+
taxonomy = thiz.data( 'taxonomy' );
|
325 |
+
self.add_taxonomy( taxonomy, this );
|
326 |
+
});
|
327 |
+
/*
|
328 |
+
jQuery(document).on('keypress', '.js-wpt-new-taxonomy-title', function(e) {
|
329 |
+
if( 13 === e.keyCode ) {
|
330 |
+
e.preventDefault();
|
331 |
+
var thiz = jQuery(this),
|
332 |
+
taxonomy = thiz.data( 'taxonomy' );
|
333 |
+
self.add_taxonomy( taxonomy, this );
|
334 |
+
}
|
335 |
+
});
|
336 |
+
*/
|
337 |
|
338 |
self.terms_exist = function( taxonomy, button )
|
339 |
{
|
340 |
var build_what = jQuery(button).data('build_what'), parent = jQuery('[name="new_tax_select_' + taxonomy + '"]').val();
|
|
|
341 |
if ( build_what === 'checkboxes' ){
|
342 |
var first_checkbox = jQuery('input[name="' + taxonomy + '\[\]"][data-parent="' + parent + '"]:first');
|
|
|
343 |
return first_checkbox.length > 0;
|
344 |
}
|
345 |
else
|
346 |
{
|
347 |
var first_option = jQuery('select[name="' + taxonomy + '\[\]"]').find('option[data-parent="' + parent + '"]:first');
|
|
|
348 |
return first_option.length > 0;
|
349 |
}
|
350 |
|
351 |
return false;
|
352 |
};
|
353 |
|
354 |
+
self._add_new_flag = false;
|
355 |
self.hide_parent_button_if_no_terms = function( taxonomy, button )
|
356 |
{
|
357 |
+
self._add_new_flag=!self._add_new_flag;
|
358 |
+
//if( self.terms_exist(taxonomy, button) === false ) {
|
359 |
+
if( self._add_new_flag === false ) {
|
360 |
jQuery('[name="new_tax_select_' + taxonomy + '"]').hide();
|
361 |
}
|
362 |
else
|
367 |
|
368 |
|
369 |
self.add_taxonomy = function ( taxonomy, button ) {
|
370 |
+
|
371 |
var new_taxonomy = jQuery('[name="new_tax_text_' + taxonomy + '"]').val()
|
372 |
, build_what = jQuery(button).data('build_what');
|
373 |
+
new_taxonomy = new_taxonomy.trim();
|
374 |
+
|
375 |
if (new_taxonomy == '') {
|
376 |
return;
|
377 |
}
|
381 |
jQuery('input[name="' + taxonomy + '\[\]"]').each (function () {
|
382 |
var id = jQuery(this).attr('id');
|
383 |
var label = jQuery('label[for="' + id + '"]');
|
384 |
+
|
385 |
if (new_taxonomy == label.text()) {
|
386 |
exists = true
|
387 |
self._flash_it(label);
|
388 |
}
|
389 |
});
|
390 |
|
391 |
+
jQuery('select[name="' + taxonomy + '\[\]"]').find('option').each (function () {
|
392 |
if (new_taxonomy == jQuery(this).text()) {
|
393 |
exists = true;
|
394 |
self._flash_it(jQuery(this));
|
404 |
add_position = null,
|
405 |
add_before = true,
|
406 |
div_fields_wrap = jQuery('div[data-item_name="taxonomyhierarchical-'+taxonomy+'"]'),
|
407 |
+
level = 0;
|
408 |
|
409 |
if ( build_what === 'checkboxes' ){
|
410 |
+
//Fix add new leaf
|
411 |
+
//https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188589136/comments
|
412 |
+
jQuery('div[data-item_name="taxonomyhierarchical-'+taxonomy+'"] li input[type=checkbox]').each(function() {
|
413 |
+
if (this.value==parent || this.value==new_taxonomy) {
|
414 |
+
div_fields_wrap = jQuery(this).parent();
|
415 |
+
}
|
416 |
+
});
|
417 |
+
//#########################################################################################
|
418 |
+
|
419 |
var new_checkbox = '<li><input data-parent="' + parent + '" class="wpt-form-checkbox form-checkbox checkbox" type="checkbox" name="' + taxonomy + '[]" checked="checked" value="' + new_taxonomy + '"></input><label>' + new_taxonomy + '</label></li>';
|
420 |
// find the first checkbox sharing parent
|
421 |
var first_checkbox = jQuery('input[name="' + taxonomy + '\[\]"][data-parent="' + parent + '"]:first');
|
524 |
|
525 |
toolsetForms.cred_tax = new toolsetForms.CRED_taxonomy();
|
526 |
|
527 |
+
//Fix https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188725294/comments
|
528 |
+
//removed return key press
|
529 |
+
jQuery(function(){
|
530 |
+
var keyStop = {
|
531 |
+
8: ":not(input:text, textarea, input:file, input:password)", // stop backspace = back
|
532 |
+
13: "input:text, input:password", // stop enter = submit
|
533 |
+
|
534 |
+
end: null
|
535 |
+
};
|
536 |
+
jQuery(document).bind("keydown", function(event){
|
537 |
+
var selector = keyStop[event.which];
|
538 |
+
|
539 |
+
if(selector !== undefined && jQuery(event.target).is(selector)) {
|
540 |
+
event.preventDefault(); //stop event
|
541 |
+
}
|
542 |
+
return true;
|
543 |
+
});
|
544 |
+
});
|
545 |
+
|
@@ -1,8 +1,8 @@
|
|
1 |
/*
|
2 |
* Repetitive JS.
|
3 |
*
|
4 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/
|
5 |
-
* $LastChangedDate: 2014-08-06
|
6 |
* $LastChangedRevision: 25705 $
|
7 |
* $LastChangedBy: juan $
|
8 |
*
|
1 |
/*
|
2 |
* Repetitive JS.
|
3 |
*
|
4 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/Views-1.6.4-CRED-1.3.2-Types-1.6.4-Acces-1.2.3/toolset-forms/js/repetitive.js $
|
5 |
+
* $LastChangedDate: 2014-08-06 16:48:27 +0200 (Wed, 06 Aug 2014) $
|
6 |
* $LastChangedRevision: 25705 $
|
7 |
* $LastChangedBy: juan $
|
8 |
*
|
@@ -7,9 +7,9 @@
|
|
7 |
*
|
8 |
* @see class WPToolset_Validation
|
9 |
*
|
10 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/
|
11 |
-
* $LastChangedDate: 2014-
|
12 |
-
* $LastChangedRevision:
|
13 |
* $LastChangedBy: francesco $
|
14 |
*
|
15 |
*/
|
@@ -24,7 +24,37 @@ var wptValidation = (function($) {
|
|
24 |
$.validator.addMethod("extension", function(value, element, param) {
|
25 |
param = typeof param === "string" ? param.replace(/,/g, "|") : param;
|
26 |
return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
});
|
|
|
28 |
/**
|
29 |
* Add validation method for datepicker adodb_xxx format for date fields
|
30 |
*/
|
@@ -114,7 +144,7 @@ var wptValidation = (function($) {
|
|
114 |
var _rule = {messages: {}};
|
115 |
_rule[rule] = value.args;
|
116 |
if (value.message !== 'undefined') {
|
117 |
-
_rule.messages[rule] = value.message;
|
118 |
}
|
119 |
element.rules('add', _rule);
|
120 |
element.addClass('js-wpt-validate');
|
7 |
*
|
8 |
* @see class WPToolset_Validation
|
9 |
*
|
10 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/common/tags/Views-1.6.4-CRED-1.3.2-Types-1.6.4-Acces-1.2.3/toolset-forms/js/validation.js $
|
11 |
+
* $LastChangedDate: 2014-09-12 11:57:24 +0200 (Fri, 12 Sep 2014) $
|
12 |
+
* $LastChangedRevision: 27017 $
|
13 |
* $LastChangedBy: francesco $
|
14 |
*
|
15 |
*/
|
24 |
$.validator.addMethod("extension", function(value, element, param) {
|
25 |
param = typeof param === "string" ? param.replace(/,/g, "|") : param;
|
26 |
return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i"));
|
27 |
+
});
|
28 |
+
|
29 |
+
/**
|
30 |
+
* add extension to validator method require
|
31 |
+
*/
|
32 |
+
$.validator.addMethod("required", function(value, element, param) {
|
33 |
+
// check if dependency is met
|
34 |
+
if ( !this.depend(param, element) )
|
35 |
+
return "dependency-mismatch";
|
36 |
+
switch( element.nodeName.toLowerCase() ) {
|
37 |
+
case 'select':
|
38 |
+
var val = $(element).val();
|
39 |
+
//Fix https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/189231348/comments
|
40 |
+
// we have data-types-value that in select contains the exactly value
|
41 |
+
$(element).find('option').each(function(index, option){
|
42 |
+
if ($(option).val()==value) {
|
43 |
+
//if $(option).data('typesValue') is undefined i am in backend side
|
44 |
+
val = ($(option).data('typesValue')!=undefined)?$(option).data('typesValue'):val;
|
45 |
+
return;
|
46 |
+
}
|
47 |
+
});
|
48 |
+
//#########################################################################
|
49 |
+
return val && $.trim(val).length > 0;
|
50 |
+
case 'input':
|
51 |
+
if ( this.checkable(element) )
|
52 |
+
return this.getLength(value, element) > 0;
|
53 |
+
default:
|
54 |
+
return $.trim(value).length > 0;
|
55 |
+
}
|
56 |
});
|
57 |
+
|
58 |
/**
|
59 |
* Add validation method for datepicker adodb_xxx format for date fields
|
60 |
*/
|
144 |
var _rule = {messages: {}};
|
145 |
_rule[rule] = value.args;
|
146 |
if (value.message !== 'undefined') {
|
147 |
+
_rule.messages[rule] = value.message;
|
148 |
}
|
149 |
element.rules('add', _rule);
|
150 |
element.addClass('js-wpt-validate');
|
@@ -584,10 +584,13 @@ class WPToolset_Cake_Validation
|
|
584 |
* @access public
|
585 |
*/
|
586 |
function extension( $check, $extensions = array('gif', 'jpeg', 'png', 'jpg') ) {
|
|
|
|
|
|
|
587 |
if ( is_array( $check ) ) {
|
588 |
return WPToolset_Cake_Validation::extension( array_shift( $check ),
|
589 |
$extensions );
|
590 |
-
}
|
591 |
$extension = strtolower( array_pop( explode( '.', $check ) ) );
|
592 |
foreach ( $extensions as $value ) {
|
593 |
if ( $extension == strtolower( $value ) ) {
|
584 |
* @access public
|
585 |
*/
|
586 |
function extension( $check, $extensions = array('gif', 'jpeg', 'png', 'jpg') ) {
|
587 |
+
//https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188215131/comments
|
588 |
+
if (!isset($check)||empty($check)) return false;
|
589 |
+
//##########################################################################################
|
590 |
if ( is_array( $check ) ) {
|
591 |
return WPToolset_Cake_Validation::extension( array_shift( $check ),
|
592 |
$extensions );
|
593 |
+
}
|
594 |
$extension = strtolower( array_pop( explode( '.', $check ) ) );
|
595 |
foreach ( $extensions as $value ) {
|
596 |
if ( $extension == strtolower( $value ) ) {
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
if ( is_admin() ) {
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/templates/metaform-item.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
if ( is_admin() ) {
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/common/toolset-forms/templates/metaform.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function(a,w){function f(a){p[p.length]=a}function m(a){q.className=q.className.replace(RegExp("\\b"+a+"\\b"),"")}function k(a,d){for(var b=0,c=a.length;b<c;b++)d.call(a,a[b],b)}function s(){q.className=q.className.replace(/ (w-|eq-|gt-|gte-|lt-|lte-|portrait|no-portrait|landscape|no-landscape)\d+/g,"");var b=a.innerWidth||q.clientWidth,d=a.outerWidth||a.screen.width;h.screen.innerWidth=b;h.screen.outerWidth=d;f("w-"+b);k(c.screens,function(a){b>a?(c.screensCss.gt&&f("gt-"+a),c.screensCss.gte&&f("gte-"+
|
2 |
+
a)):b<a?(c.screensCss.lt&&f("lt-"+a),c.screensCss.lte&&f("lte-"+a)):b===a&&(c.screensCss.lte&&f("lte-"+a),c.screensCss.eq&&f("e-q"+a),c.screensCss.gte&&f("gte-"+a))});var d=a.innerHeight||q.clientHeight,g=a.outerHeight||a.screen.height;h.screen.innerHeight=d;h.screen.outerHeight=g;h.feature("portrait",d>b);h.feature("landscape",d<b)}function r(){a.clearTimeout(u);u=a.setTimeout(s,100)}var n=a.document,g=a.navigator,t=a.location,q=n.documentElement,p=[],c={screens:[240,320,480,640,768,800,1024,1280,
|
3 |
+
1440,1680,1920],screensCss:{gt:!0,gte:!1,lt:!0,lte:!1,eq:!1},browsers:[{ie:{min:6,max:10}}],browserCss:{gt:!0,gte:!1,lt:!0,lte:!1,eq:!0},section:"-section",page:"-page",head:"head"};if(a.head_conf)for(var b in a.head_conf)a.head_conf[b]!==w&&(c[b]=a.head_conf[b]);var h=a[c.head]=function(){h.ready.apply(null,arguments)};h.feature=function(a,b,c){if(!a)return q.className+=" "+p.join(" "),p=[],h;"[object Function]"===Object.prototype.toString.call(b)&&(b=b.call());f((b?"":"no-")+a);h[a]=!!b;c||(m("no-"+
|
4 |
+
a),m(a),h.feature());return h};h.feature("js",!0);b=g.userAgent.toLowerCase();g=/mobile|midp/.test(b);h.feature("mobile",g,!0);h.feature("desktop",!g,!0);b=/(chrome|firefox)[ \/]([\w.]+)/.exec(b)||/(iphone|ipad|ipod)(?:.*version)?[ \/]([\w.]+)/.exec(b)||/(android)(?:.*version)?[ \/]([\w.]+)/.exec(b)||/(webkit|opera)(?:.*version)?[ \/]([\w.]+)/.exec(b)||/(msie) ([\w.]+)/.exec(b)||[];g=b[1];b=parseFloat(b[2]);switch(g){case "msie":g="ie";b=n.documentMode||b;break;case "firefox":g="ff";break;case "ipod":case "ipad":case "iphone":g=
|
5 |
+
"ios";break;case "webkit":g="safari"}h.browser={name:g,version:b};h.browser[g]=!0;for(var v=0,x=c.browsers.length;v<x;v++)for(var i in c.browsers[v])if(g===i){f(i);for(var A=c.browsers[v][i].max,l=c.browsers[v][i].min;l<=A;l++)b>l?(c.browserCss.gt&&f("gt-"+i+l),c.browserCss.gte&&f("gte-"+i+l)):b<l?(c.browserCss.lt&&f("lt-"+i+l),c.browserCss.lte&&f("lte-"+i+l)):b===l&&(c.browserCss.lte&&f("lte-"+i+l),c.browserCss.eq&&f("eq-"+i+l),c.browserCss.gte&&f("gte-"+i+l))}else f("no-"+i);"ie"===g&&9>b&&k("abbr article aside audio canvas details figcaption figure footer header hgroup mark meter nav output progress section summary time video".split(" "),
|
6 |
+
function(a){n.createElement(a)});k(t.pathname.split("/"),function(a,b){if(2<this.length&&this[b+1]!==w)b&&f(this.slice(1,b+1).join("-").toLowerCase()+c.section);else{var g=a||"index",h=g.indexOf(".");0<h&&(g=g.substring(0,h));q.id=g.toLowerCase()+c.page;b||f("root"+c.section)}});h.screen={height:a.screen.height,width:a.screen.width};s();var u=0;a.addEventListener?a.addEventListener("resize",r,!1):a.attachEvent("onresize",r)})(window);
|
7 |
+
(function(a,w){function f(a){var f=a.charAt(0).toUpperCase()+a.substr(1),a=(a+" "+r.join(f+" ")+f).split(" "),c;a:{for(c in a)if(k[a[c]]!==w){c=!0;break a}c=!1}return!!c}var m=a.document.createElement("i"),k=m.style,s=" -o- -moz- -ms- -webkit- -khtml- ".split(" "),r=["Webkit","Moz","O","ms","Khtml"],n=a[a.head_conf&&a.head_conf.head||"head"],g={gradient:function(){k.cssText=("background-image:"+s.join("gradient(linear,left top,right bottom,from(#9f9),to(#fff));background-image:")+s.join("linear-gradient(left top,#eee,#fff);background-image:")).slice(0,
|
8 |
+
-17);return!!k.backgroundImage},rgba:function(){k.cssText="background-color:rgba(0,0,0,0.5)";return!!k.backgroundColor},opacity:function(){return""===m.style.opacity},textshadow:function(){return""===k.textShadow},multiplebgs:function(){k.cssText="background:url(//:),url(//:),red url(//:)";return/(url\s*\(.*?){3}/.test(k.background)},boxshadow:function(){return f("boxShadow")},borderimage:function(){return f("borderImage")},borderradius:function(){return f("borderRadius")},cssreflections:function(){return f("boxReflect")},
|
9 |
+
csstransforms:function(){return f("transform")},csstransitions:function(){return f("transition")},touch:function(){return"ontouchstart"in a},retina:function(){return 1<a.devicePixelRatio},fontface:function(){var a=n.browser.version;switch(n.browser.name){case "ie":return 9<=a;case "chrome":return 13<=a;case "ff":return 6<=a;case "ios":return 5<=a;case "android":return!1;case "webkit":return 5.1<=a;case "opera":return 10<=a;default:return!1}}},t;for(t in g)g[t]&&n.feature(t,g[t].call(),!0);n.feature()})(window);
|
10 |
+
(function(a,w){function f(){}function m(j,a){if(j){"object"===typeof j&&(j=[].slice.call(j));for(var b=0,c=j.length;b<c;b++)a.call(j,j[b],b)}}function k(a,b){var e=Object.prototype.toString.call(b).slice(8,-1);return b!==w&&null!==b&&e===a}function s(a){return k("Function",a)}function r(a){a=a||f;a._done||(a(),a._done=1)}function n(a){var b={};if("object"===typeof a)for(var e in a)a[e]&&(b={name:e,url:a[e]});else b=a.split("/"),b=b[b.length-1],e=b.indexOf("?"),b={name:-1!==e?b.substring(0,e):b,url:a};
|
11 |
+
return(a=i[b.name])&&a.url===b.url?a:i[b.name]=b}function g(a){var a=a||i,b;for(b in a)if(a.hasOwnProperty(b)&&a[b].state!==y)return!1;return!0}function t(a,b){b=b||f;a.state===y?b():a.state===D?d.ready(a.name,b):a.state===C?a.onpreload.push(function(){t(a,b)}):(a.state=D,q(a,function(){a.state=y;b();m(x[a.name],function(a){r(a)});u&&g()&&m(x.ALL,function(a){r(a)})}))}function q(j,c){var c=c||f,e;/\.css[^\.]*$/.test(j.url)?(e=b.createElement("link"),e.type="text/"+(j.type||"css"),e.rel="stylesheet",
|
12 |
+
e.href=j.url):(e=b.createElement("script"),e.type="text/"+(j.type||"javascript"),e.src=j.url);e.onload=e.onreadystatechange=function(j){j=j||a.event;if("load"===j.type||/loaded|complete/.test(e.readyState)&&(!b.documentMode||9>b.documentMode))e.onload=e.onreadystatechange=e.onerror=null,c()};e.onerror=function(){e.onload=e.onreadystatechange=e.onerror=null;c()};e.async=!1;e.defer=!1;var d=b.head||b.getElementsByTagName("head")[0];d.insertBefore(e,d.lastChild)}function p(){b.body?u||(u=!0,m(h,function(a){r(a)})):
|
13 |
+
(a.clearTimeout(d.readyTimeout),d.readyTimeout=a.setTimeout(p,50))}function c(){b.addEventListener?(b.removeEventListener("DOMContentLoaded",c,!1),p()):"complete"===b.readyState&&(b.detachEvent("onreadystatechange",c),p())}var b=a.document,h=[],v=[],x={},i={},A="async"in b.createElement("script")||"MozAppearance"in b.documentElement.style||a.opera,l,u,B=a.head_conf&&a.head_conf.head||"head",d=a[B]=a[B]||function(){d.ready.apply(null,arguments)},C=1,D=3,y=4;d.load=A?function(){var a=arguments,b=a[a.length-
|
14 |
+
1],e={};s(b)||(b=null);m(a,function(c,d){c!==b&&(c=n(c),e[c.name]=c,t(c,b&&d===a.length-2?function(){g(e)&&r(b)}:null))});return d}:function(){var a=arguments,b=[].slice.call(a,1),c=b[0];if(!l)return v.push(function(){d.load.apply(null,a)}),d;c?(m(b,function(a){if(!s(a)){var b=n(a);b.state===w&&(b.state=C,b.onpreload=[],q({url:b.url,type:"cache"},function(){b.state=2;m(b.onpreload,function(a){a.call()})}))}}),t(n(a[0]),s(c)?c:function(){d.load.apply(null,b)})):t(n(a[0]));return d};d.js=d.load;d.test=
|
15 |
+
function(a,b,c,g){a="object"===typeof a?a:{test:a,success:b?k("Array",b)?b:[b]:!1,failure:c?k("Array",c)?c:[c]:!1,callback:g||f};(b=!!a.test)&&a.success?(a.success.push(a.callback),d.load.apply(null,a.success)):!b&&a.failure?(a.failure.push(a.callback),d.load.apply(null,a.failure)):g();return d};d.ready=function(a,c){if(a===b)return u?r(c):h.push(c),d;s(a)&&(c=a,a="ALL");if("string"!==typeof a||!s(c))return d;var e=i[a];if(e&&e.state===y||"ALL"===a&&g()&&u)return r(c),d;(e=x[a])?e.push(c):x[a]=[c];
|
16 |
+
return d};d.ready(b,function(){g()&&m(x.ALL,function(a){r(a)});d.feature&&d.feature("domloaded",!0)});if("complete"===b.readyState)p();else if(b.addEventListener)b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",p,!1);else{b.attachEvent("onreadystatechange",c);a.attachEvent("onload",p);var z=!1;try{z=null==a.frameElement&&b.documentElement}catch(F){}z&&z.doScroll&&function E(){if(!u){try{z.doScroll("left")}catch(b){a.clearTimeout(d.readyTimeout);d.readyTimeout=a.setTimeout(E,50);
|
17 |
+
return}p()}}()}setTimeout(function(){l=!0;m(v,function(a){a()})},300)})(window);
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// jStorage v0.4.7
|
2 |
+
(function(){function D(){var a="{}";if("userDataBehavior"==k){d.load("jStorage");try{a=d.getAttribute("jStorage")}catch(b){}try{r=d.getAttribute("jStorage_update")}catch(c){}h.jStorage=a}E();x();F()}function u(){var a;clearTimeout(G);G=setTimeout(function(){if("localStorage"==k||"globalStorage"==k)a=h.jStorage_update;else if("userDataBehavior"==k){d.load("jStorage");try{a=d.getAttribute("jStorage_update")}catch(b){}}if(a&&a!=r){r=a;var l=m.parse(m.stringify(c.__jstorage_meta.CRC32)),p;D();p=m.parse(m.stringify(c.__jstorage_meta.CRC32));
|
3 |
+
var e,z=[],f=[];for(e in l)l.hasOwnProperty(e)&&(p[e]?l[e]!=p[e]&&"2."==String(l[e]).substr(0,2)&&z.push(e):f.push(e));for(e in p)p.hasOwnProperty(e)&&(l[e]||z.push(e));s(z,"updated");s(f,"deleted")}},25)}function s(a,b){a=[].concat(a||[]);if("flushed"==b){a=[];for(var c in g)g.hasOwnProperty(c)&&a.push(c);b="deleted"}c=0;for(var p=a.length;c<p;c++){if(g[a[c]])for(var e=0,d=g[a[c]].length;e<d;e++)g[a[c]][e](a[c],b);if(g["*"])for(e=0,d=g["*"].length;e<d;e++)g["*"][e](a[c],b)}}function v(){var a=(+new Date).toString();
|
4 |
+
if("localStorage"==k||"globalStorage"==k)try{h.jStorage_update=a}catch(b){k=!1}else"userDataBehavior"==k&&(d.setAttribute("jStorage_update",a),d.save("jStorage"));u()}function E(){if(h.jStorage)try{c=m.parse(String(h.jStorage))}catch(a){h.jStorage="{}"}else h.jStorage="{}";A=h.jStorage?String(h.jStorage).length:0;c.__jstorage_meta||(c.__jstorage_meta={});c.__jstorage_meta.CRC32||(c.__jstorage_meta.CRC32={})}function w(){if(c.__jstorage_meta.PubSub){for(var a=+new Date-2E3,b=0,l=c.__jstorage_meta.PubSub.length;b<
|
5 |
+
l;b++)if(c.__jstorage_meta.PubSub[b][0]<=a){c.__jstorage_meta.PubSub.splice(b,c.__jstorage_meta.PubSub.length-b);break}c.__jstorage_meta.PubSub.length||delete c.__jstorage_meta.PubSub}try{h.jStorage=m.stringify(c),d&&(d.setAttribute("jStorage",h.jStorage),d.save("jStorage")),A=h.jStorage?String(h.jStorage).length:0}catch(p){}}function q(a){if(!a||"string"!=typeof a&&"number"!=typeof a)throw new TypeError("Key name must be string or numeric");if("__jstorage_meta"==a)throw new TypeError("Reserved key name");
|
6 |
+
return!0}function x(){var a,b,l,d,e=Infinity,h=!1,f=[];clearTimeout(H);if(c.__jstorage_meta&&"object"==typeof c.__jstorage_meta.TTL){a=+new Date;l=c.__jstorage_meta.TTL;d=c.__jstorage_meta.CRC32;for(b in l)l.hasOwnProperty(b)&&(l[b]<=a?(delete l[b],delete d[b],delete c[b],h=!0,f.push(b)):l[b]<e&&(e=l[b]));Infinity!=e&&(H=setTimeout(x,e-a));h&&(w(),v(),s(f,"deleted"))}}function F(){var a;if(c.__jstorage_meta.PubSub){var b,l=B;for(a=c.__jstorage_meta.PubSub.length-1;0<=a;a--)if(b=c.__jstorage_meta.PubSub[a],
|
7 |
+
b[0]>B){var l=b[0],d=b[1];b=b[2];if(t[d])for(var e=0,h=t[d].length;e<h;e++)try{t[d][e](d,m.parse(m.stringify(b)))}catch(f){}}B=l}}var y=window.jQuery||window.$||(window.$={}),m={parse:window.JSON&&(window.JSON.parse||window.JSON.decode)||String.prototype.evalJSON&&function(a){return String(a).evalJSON()}||y.parseJSON||y.evalJSON,stringify:Object.toJSON||window.JSON&&(window.JSON.stringify||window.JSON.encode)||y.toJSON};if(!("parse"in m&&"stringify"in m))throw Error("No JSON support found, include //cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js to page");
|
8 |
+
var c={__jstorage_meta:{CRC32:{}}},h={jStorage:"{}"},d=null,A=0,k=!1,g={},G=!1,r=0,t={},B=+new Date,H,C={isXML:function(a){return(a=(a?a.ownerDocument||a:0).documentElement)?"HTML"!==a.nodeName:!1},encode:function(a){if(!this.isXML(a))return!1;try{return(new XMLSerializer).serializeToString(a)}catch(b){try{return a.xml}catch(c){}}return!1},decode:function(a){var b="DOMParser"in window&&(new DOMParser).parseFromString||window.ActiveXObject&&function(a){var b=new ActiveXObject("Microsoft.XMLDOM");b.async=
|
9 |
+
"false";b.loadXML(a);return b};if(!b)return!1;a=b.call("DOMParser"in window&&new DOMParser||window,a,"text/xml");return this.isXML(a)?a:!1}};y.jStorage={version:"0.4.7",set:function(a,b,d){q(a);d=d||{};if("undefined"==typeof b)return this.deleteKey(a),b;if(C.isXML(b))b={_is_xml:!0,xml:C.encode(b)};else{if("function"==typeof b)return;b&&"object"==typeof b&&(b=m.parse(m.stringify(b)))}c[a]=b;for(var h=c.__jstorage_meta.CRC32,e=m.stringify(b),k=e.length,f=2538058380^k,g=0,n;4<=k;)n=e.charCodeAt(g)&255|
|
10 |
+
(e.charCodeAt(++g)&255)<<8|(e.charCodeAt(++g)&255)<<16|(e.charCodeAt(++g)&255)<<24,n=1540483477*(n&65535)+((1540483477*(n>>>16)&65535)<<16),n^=n>>>24,n=1540483477*(n&65535)+((1540483477*(n>>>16)&65535)<<16),f=1540483477*(f&65535)+((1540483477*(f>>>16)&65535)<<16)^n,k-=4,++g;switch(k){case 3:f^=(e.charCodeAt(g+2)&255)<<16;case 2:f^=(e.charCodeAt(g+1)&255)<<8;case 1:f^=e.charCodeAt(g)&255,f=1540483477*(f&65535)+((1540483477*(f>>>16)&65535)<<16)}f^=f>>>13;f=1540483477*(f&65535)+((1540483477*(f>>>16)&
|
11 |
+
65535)<<16);h[a]="2."+((f^f>>>15)>>>0);this.setTTL(a,d.TTL||0);s(a,"updated");return b},get:function(a,b){q(a);return a in c?c[a]&&"object"==typeof c[a]&&c[a]._is_xml?C.decode(c[a].xml):c[a]:"undefined"==typeof b?null:b},deleteKey:function(a){q(a);return a in c?(delete c[a],"object"==typeof c.__jstorage_meta.TTL&&a in c.__jstorage_meta.TTL&&delete c.__jstorage_meta.TTL[a],delete c.__jstorage_meta.CRC32[a],w(),v(),s(a,"deleted"),!0):!1},setTTL:function(a,b){var d=+new Date;q(a);b=Number(b)||0;return a in
|
12 |
+
c?(c.__jstorage_meta.TTL||(c.__jstorage_meta.TTL={}),0<b?c.__jstorage_meta.TTL[a]=d+b:delete c.__jstorage_meta.TTL[a],w(),x(),v(),!0):!1},getTTL:function(a){var b=+new Date;q(a);return a in c&&c.__jstorage_meta.TTL&&c.__jstorage_meta.TTL[a]?(a=c.__jstorage_meta.TTL[a]-b)||0:0},flush:function(){c={__jstorage_meta:{CRC32:{}}};w();v();s(null,"flushed");return!0},storageObj:function(){function a(){}a.prototype=c;return new a},index:function(){var a=[],b;for(b in c)c.hasOwnProperty(b)&&"__jstorage_meta"!=
|
13 |
+
b&&a.push(b);return a},storageSize:function(){return A},currentBackend:function(){return k},storageAvailable:function(){return!!k},listenKeyChange:function(a,b){q(a);g[a]||(g[a]=[]);g[a].push(b)},stopListening:function(a,b){q(a);if(g[a])if(b)for(var c=g[a].length-1;0<=c;c--)g[a][c]==b&&g[a].splice(c,1);else delete g[a]},subscribe:function(a,b){a=(a||"").toString();if(!a)throw new TypeError("Channel not defined");t[a]||(t[a]=[]);t[a].push(b)},publish:function(a,b){a=(a||"").toString();if(!a)throw new TypeError("Channel not defined");
|
14 |
+
c.__jstorage_meta||(c.__jstorage_meta={});c.__jstorage_meta.PubSub||(c.__jstorage_meta.PubSub=[]);c.__jstorage_meta.PubSub.unshift([+new Date,a,b]);w();v()},reInit:function(){D()},noConflict:function(a){delete window.$.jStorage;a&&(window.jStorage=this);return this}};(function(){var a=!1;if("localStorage"in window)try{window.localStorage.setItem("_tmptest","tmpval"),a=!0,window.localStorage.removeItem("_tmptest")}catch(b){}if(a)try{window.localStorage&&(h=window.localStorage,k="localStorage",r=h.jStorage_update)}catch(c){}else if("globalStorage"in
|
15 |
+
window)try{window.globalStorage&&(h="localhost"==window.location.hostname?window.globalStorage["localhost.localdomain"]:window.globalStorage[window.location.hostname],k="globalStorage",r=h.jStorage_update)}catch(g){}else if(d=document.createElement("link"),d.addBehavior){d.style.behavior="url(#default#userData)";document.getElementsByTagName("head")[0].appendChild(d);try{d.load("jStorage")}catch(e){d.setAttribute("jStorage","{}"),d.save("jStorage"),d.load("jStorage")}a="{}";try{a=d.getAttribute("jStorage")}catch(m){}try{r=
|
16 |
+
d.getAttribute("jStorage_update")}catch(f){}h.jStorage=a;k="userDataBehavior"}else{d=null;return}E();x();"localStorage"==k||"globalStorage"==k?"addEventListener"in window?window.addEventListener("storage",u,!1):document.attachEvent("onstorage",u):"userDataBehavior"==k&&setInterval(u,1E3);F();"addEventListener"in window&&window.addEventListener("pageshow",function(a){a.persisted&&u()},!1)})()})();
|
@@ -120,7 +120,7 @@ if ( file_exists( dirname(__FILE__) . '/editor-addon-generic.class.php') && !cla
|
|
120 |
// Codemirror (new layout) button
|
121 |
if ( $codemirror_button ){
|
122 |
$addon_button = '<button class="js-code-editor-toolbar-button js-code-editor-toolbar-button-v-icon button-secondary">'.
|
123 |
-
'<i class="icon-views ont-icon-
|
124 |
}
|
125 |
// add search box
|
126 |
$searchbar = $this->get_search_bar();
|
@@ -332,7 +332,7 @@ if ( file_exists( dirname(__FILE__) . '/editor-addon-generic.class.php') && !cla
|
|
332 |
// Codemirrir (new layout) button
|
333 |
if ( $codemirror_button ){
|
334 |
$addon_button = '<button class="js-code-editor-toolbar-button js-code-editor-toolbar-button-v-icon button-secondary">'.
|
335 |
-
'<i class="icon-views ont-icon-
|
336 |
}
|
337 |
// add search box
|
338 |
$searchbar = $this->get_search_bar();
|
120 |
// Codemirror (new layout) button
|
121 |
if ( $codemirror_button ){
|
122 |
$addon_button = '<button class="js-code-editor-toolbar-button js-code-editor-toolbar-button-v-icon button-secondary">'.
|
123 |
+
'<i class="icon-views-logo ont-icon-18"></i><span class="button-label">'. __('Fields', 'wpv-views') .'</span></button>';
|
124 |
}
|
125 |
// add search box
|
126 |
$searchbar = $this->get_search_bar();
|
332 |
// Codemirrir (new layout) button
|
333 |
if ( $codemirror_button ){
|
334 |
$addon_button = '<button class="js-code-editor-toolbar-button js-code-editor-toolbar-button-v-icon button-secondary">'.
|
335 |
+
'<i class="icon-views-logo ont-icon-18"></i><span class="button-label">'. __('Fields', 'wpv-views') .'</span></button>';
|
336 |
}
|
337 |
// add search box
|
338 |
$searchbar = $this->get_search_bar();
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Frontend functions.
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -246,7 +246,7 @@ function types_render_field_single( $field, $params, $content = null, $code = ''
|
|
246 |
$params['field_value'], $params, $post->ID, $field['id'], $meta_id );
|
247 |
// To make sure
|
248 |
if ( is_string( $params['field_value'] ) ) {
|
249 |
-
$params['field_value'] =
|
250 |
}
|
251 |
|
252 |
// Set values
|
@@ -287,7 +287,13 @@ function types_render_field_single( $field, $params, $content = null, $code = ''
|
|
287 |
if ( $field['type'] == 'skype' && isset( $params['field_value']['skypename'] ) ) {
|
288 |
$output = $params['field_value']['skypename'];
|
289 |
} else if ($field['type'] == 'checkboxes' && is_array( $params['field_value'] ) ) {
|
290 |
-
$output =
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
} else {
|
292 |
$output = $params['field_value'];
|
293 |
}
|
@@ -320,11 +326,12 @@ function types_render_field_single( $field, $params, $content = null, $code = ''
|
|
320 |
}
|
321 |
}
|
322 |
}
|
|
|
323 |
// Apply filters
|
324 |
$output = strval( apply_filters( 'types_view', $output,
|
325 |
$params['field_value'], $field['type'], $field['slug'],
|
326 |
$field['name'], $params ) );
|
327 |
-
return $output;
|
328 |
}
|
329 |
|
330 |
function wpcf_frontend_compat_html_output( $output, $field, $content, $params ) {
|
2 |
/*
|
3 |
* Frontend functions.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/frontend.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
246 |
$params['field_value'], $params, $post->ID, $field['id'], $meta_id );
|
247 |
// To make sure
|
248 |
if ( is_string( $params['field_value'] ) ) {
|
249 |
+
$params['field_value'] = addslashes( stripslashes( strval( $params['field_value'] ) ) );
|
250 |
}
|
251 |
|
252 |
// Set values
|
287 |
if ( $field['type'] == 'skype' && isset( $params['field_value']['skypename'] ) ) {
|
288 |
$output = $params['field_value']['skypename'];
|
289 |
} else if ($field['type'] == 'checkboxes' && is_array( $params['field_value'] ) ) {
|
290 |
+
$output = '';
|
291 |
+
foreach ($params['field_value'] as $value) {
|
292 |
+
if ($output != '') {
|
293 |
+
$output .= ', ';
|
294 |
+
}
|
295 |
+
$output .= $value[0];
|
296 |
+
}
|
297 |
} else {
|
298 |
$output = $params['field_value'];
|
299 |
}
|
326 |
}
|
327 |
}
|
328 |
}
|
329 |
+
|
330 |
// Apply filters
|
331 |
$output = strval( apply_filters( 'types_view', $output,
|
332 |
$params['field_value'], $field['type'], $field['slug'],
|
333 |
$field['name'], $params ) );
|
334 |
+
return htmlspecialchars_decode( stripslashes( strval( $output ) ) );
|
335 |
}
|
336 |
|
337 |
function wpcf_frontend_compat_html_output( $output, $field, $content, $params ) {
|
@@ -3,10 +3,10 @@
|
|
3 |
* Basic and init functions.
|
4 |
* Since Types 1.2 moved from /embedded/types.php
|
5 |
*
|
6 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/functions.php $
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
* Basic and init functions.
|
4 |
* Since Types 1.2 moved from /embedded/types.php
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/functions.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Custom Post Types embedded code.
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
add_action( 'wpcf_type', 'wpcf_filter_type', 10, 2 );
|
3 |
*
|
4 |
* Custom Post Types embedded code.
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/custom-types.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
add_action( 'wpcf_type', 'wpcf_filter_type', 10, 2 );
|
@@ -4,10 +4,10 @@
|
|
4 |
* Edit post page functions
|
5 |
*
|
6 |
*
|
7 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/fields-post.php $
|
8 |
-
* $LastChangedDate: 2014-
|
9 |
-
* $LastChangedRevision:
|
10 |
-
* $LastChangedBy:
|
11 |
*
|
12 |
* Core file with stable and working functions.
|
13 |
* Please add hooks if adjustment needed, do not add any more new code here.
|
@@ -205,7 +205,6 @@ function wpcf_add_meta_boxes( $post_type, $post ) {
|
|
205 |
|
206 |
// Check if hidden
|
207 |
if ( !isset( $group['__show_meta_box'] ) || $group['__show_meta_box'] != false ) {
|
208 |
-
|
209 |
// Add meta boxes
|
210 |
if ( empty( $only_preview ) ) {
|
211 |
add_meta_box( "wpcf-group-{$group['slug']}",
|
@@ -399,6 +398,14 @@ function wpcf_admin_post_meta_box( $post, $group, $echo = '', $open_style_editor
|
|
399 |
&& defined( 'WPTOOLSET_FORMS_VERSION' )
|
400 |
) {
|
401 |
if ( isset( $group['args']['html'] ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
foreach ( $group['args']['html'] as $field ) {
|
403 |
echo is_array( $field ) ? wptoolset_form_field( 'post',
|
404 |
$field['config'], $field['meta'] ) : $field;
|
@@ -1698,7 +1705,7 @@ function wpcf_admin_post_add_to_editor_js() {
|
|
1698 |
$editor_addon = new Editor_addon( 'types',
|
1699 |
__( 'Insert Types Shortcode', 'wpcf' ),
|
1700 |
WPCF_EMBEDDED_RES_RELPATH . '/js/types_editor_plugin.js',
|
1701 |
-
'', true, 'icon-types ont-icon-
|
1702 |
|
1703 |
foreach ( $groups as $group ) {
|
1704 |
if ( empty( $group['fields'] ) ) {
|
4 |
* Edit post page functions
|
5 |
*
|
6 |
*
|
7 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields-post.php $
|
8 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
9 |
+
* $LastChangedRevision: 1012704 $
|
10 |
+
* $LastChangedBy: iworks $
|
11 |
*
|
12 |
* Core file with stable and working functions.
|
13 |
* Please add hooks if adjustment needed, do not add any more new code here.
|
205 |
|
206 |
// Check if hidden
|
207 |
if ( !isset( $group['__show_meta_box'] ) || $group['__show_meta_box'] != false ) {
|
|
|
208 |
// Add meta boxes
|
209 |
if ( empty( $only_preview ) ) {
|
210 |
add_meta_box( "wpcf-group-{$group['slug']}",
|
398 |
&& defined( 'WPTOOLSET_FORMS_VERSION' )
|
399 |
) {
|
400 |
if ( isset( $group['args']['html'] ) ) {
|
401 |
+
/**
|
402 |
+
* show group description
|
403 |
+
*/
|
404 |
+
if ( array_key_exists('description', $group['args'] ) && !empty($group['args']['description'])) {
|
405 |
+
echo '<div class="wpcf-meta-box-description">';
|
406 |
+
echo wpautop( wpcf_translate( 'group ' . $group['args']['id'] . ' description', $group['args']['description'] ) );
|
407 |
+
echo '</div>';
|
408 |
+
}
|
409 |
foreach ( $group['args']['html'] as $field ) {
|
410 |
echo is_array( $field ) ? wptoolset_form_field( 'post',
|
411 |
$field['config'], $field['meta'] ) : $field;
|
1705 |
$editor_addon = new Editor_addon( 'types',
|
1706 |
__( 'Insert Types Shortcode', 'wpcf' ),
|
1707 |
WPCF_EMBEDDED_RES_RELPATH . '/js/types_editor_plugin.js',
|
1708 |
+
'', true, 'icon-types-logo ont-icon-18 ont-color-gray' );
|
1709 |
|
1710 |
foreach ( $groups as $group ) {
|
1711 |
if ( empty( $group['fields'] ) ) {
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/audio.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
|
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/fields/checkbox.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
@@ -101,7 +101,7 @@ function wpcf_fields_checkbox_editor_submit( $data, $field, $context ) {
|
|
101 |
$types_attr = 'usermeta';
|
102 |
}
|
103 |
|
104 |
-
if ( $data['display'] == 'value' ) {
|
105 |
|
106 |
$checked_add = $add . ' state="checked"';
|
107 |
$unchecked_add = $add . ' state="unchecked"';
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/checkbox.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
101 |
$types_attr = 'usermeta';
|
102 |
}
|
103 |
|
104 |
+
if ( isset($data['display']) && $data['display'] == 'value' ) {
|
105 |
|
106 |
$checked_add = $add . ' state="checked"';
|
107 |
$unchecked_add = $add . ' state="unchecked"';
|
@@ -202,7 +202,7 @@ function wpcf_fields_checkboxes_view( $params ) {
|
|
202 |
}
|
203 |
}
|
204 |
$output = implode( array_values( $params['field_value'] ), $separator );
|
205 |
-
return empty( $output ) ? '__wpcf_skip_empty' : $output;
|
206 |
}
|
207 |
|
208 |
/*
|
@@ -249,8 +249,10 @@ function wpcf_fields_checkboxes_view( $params ) {
|
|
249 |
*
|
250 |
* Only set if it matches settings.
|
251 |
* Otherwise leave empty and '__wpcf_skip_empty' will be returned.
|
|
|
252 |
*/
|
253 |
-
|
|
|
254 |
/*
|
255 |
*
|
256 |
* Only if NOT unchecked!
|
@@ -261,7 +263,7 @@ function wpcf_fields_checkboxes_view( $params ) {
|
|
261 |
$output = wpcf_translate( 'field ' . $params['field']['id']
|
262 |
. ' option ' . $option['key'] . ' value', $output );
|
263 |
}
|
264 |
-
} else if ( $option['data']['display'] == 'value' ) {
|
265 |
/*
|
266 |
*
|
267 |
* Checked
|
@@ -340,19 +342,19 @@ function wpcf_fields_checkboxes_conditional_filter_post_meta( $null, $object_id,
|
|
340 |
if ( !empty( $field ) && $field['type'] == 'checkboxes' ) {
|
341 |
$_meta = maybe_unserialize( wpcf_get_post_meta( $object_id, $meta_key,
|
342 |
$single ) );
|
343 |
-
if ( is_array( $_meta ) ) {
|
344 |
-
$null = empty( $_meta ) ? '1' : '';
|
345 |
-
}
|
346 |
-
/**
|
347 |
-
* be sure do not return string if array is expected!
|
348 |
-
*/
|
349 |
-
if ( !$single && !is_array($null) ) {
|
350 |
-
return array($null);
|
351 |
-
}
|
352 |
-
}
|
353 |
-
return $null;
|
354 |
-
}
|
355 |
-
|
356 |
/**
|
357 |
* Triggers post_meta filter.
|
358 |
*
|
202 |
}
|
203 |
}
|
204 |
$output = implode( array_values( $params['field_value'] ), $separator );
|
205 |
+
return empty( $output ) ? '__wpcf_skip_empty' : stripslashes($output);
|
206 |
}
|
207 |
|
208 |
/*
|
249 |
*
|
250 |
* Only set if it matches settings.
|
251 |
* Otherwise leave empty and '__wpcf_skip_empty' will be returned.
|
252 |
+
*
|
253 |
*/
|
254 |
+
|
255 |
+
if ( isset($option['data']) && $option['data']['display'] == 'db' ) {
|
256 |
/*
|
257 |
*
|
258 |
* Only if NOT unchecked!
|
263 |
$output = wpcf_translate( 'field ' . $params['field']['id']
|
264 |
. ' option ' . $option['key'] . ' value', $output );
|
265 |
}
|
266 |
+
} else if ( isset($option['data']) && $option['data']['display'] == 'value' ) {
|
267 |
/*
|
268 |
*
|
269 |
* Checked
|
342 |
if ( !empty( $field ) && $field['type'] == 'checkboxes' ) {
|
343 |
$_meta = maybe_unserialize( wpcf_get_post_meta( $object_id, $meta_key,
|
344 |
$single ) );
|
345 |
+
if ( is_array( $_meta ) ) {
|
346 |
+
$null = empty( $_meta ) ? '1' : '';
|
347 |
+
}
|
348 |
+
/**
|
349 |
+
* be sure do not return string if array is expected!
|
350 |
+
*/
|
351 |
+
if ( !$single && !is_array($null) ) {
|
352 |
+
return array($null);
|
353 |
+
}
|
354 |
+
}
|
355 |
+
return $null;
|
356 |
+
}
|
357 |
+
|
358 |
/**
|
359 |
* Triggers post_meta filter.
|
360 |
*
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
*
|
4 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/fields/file.php $
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
/**
|
1 |
<?php
|
2 |
/*
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/file.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
/**
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
add_filter( 'wpcf_fields_type_image_value_get', 'wpcf_fields_image_value_filter' );
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/image.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
add_filter( 'wpcf_fields_type_image_value_get', 'wpcf_fields_image_value_filter' );
|
@@ -144,10 +144,13 @@ function wpcf_fields_radio_view( $params ) {
|
|
144 |
// See if user specified output for each field
|
145 |
if ( isset( $params['option'] ) ) {
|
146 |
foreach ( $field['data']['options'] as $option_key => $option ) {
|
147 |
-
if ( isset( $option['value'] )
|
148 |
-
|
|
|
149 |
&& $option_key == $params['option'] ) {
|
150 |
-
|
|
|
|
|
151 |
}
|
152 |
}
|
153 |
// return ' ';
|
@@ -158,7 +161,7 @@ function wpcf_fields_radio_view( $params ) {
|
|
158 |
$field_value = $params['field_value'];
|
159 |
foreach ( $field['data']['options'] as $option_key => $option ) {
|
160 |
if ( isset( $option['value'] )
|
161 |
-
&& $option['value'] == $params['field_value'] ) {
|
162 |
$field_value = wpcf_translate( 'field ' . $params['field']['id'] . ' option '
|
163 |
. $option_key . ' title', $option['title'] );
|
164 |
if ( isset( $params['field']['data']['display'] )
|
@@ -172,5 +175,6 @@ function wpcf_fields_radio_view( $params ) {
|
|
172 |
}
|
173 |
$output = $field_value;
|
174 |
}
|
175 |
-
|
|
|
176 |
}
|
144 |
// See if user specified output for each field
|
145 |
if ( isset( $params['option'] ) ) {
|
146 |
foreach ( $field['data']['options'] as $option_key => $option ) {
|
147 |
+
if ( isset( $option['value'] ) ) {
|
148 |
+
$test_val = stripslashes( strval( $option['value'] ) );
|
149 |
+
if ($test_val == $params['field_value']
|
150 |
&& $option_key == $params['option'] ) {
|
151 |
+
|
152 |
+
return htmlspecialchars_decode($params['#content']);
|
153 |
+
}
|
154 |
}
|
155 |
}
|
156 |
// return ' ';
|
161 |
$field_value = $params['field_value'];
|
162 |
foreach ( $field['data']['options'] as $option_key => $option ) {
|
163 |
if ( isset( $option['value'] )
|
164 |
+
&& stripslashes( $option['value'] ) == stripslashes( $params['field_value'] ) ) {
|
165 |
$field_value = wpcf_translate( 'field ' . $params['field']['id'] . ' option '
|
166 |
. $option_key . ' title', $option['title'] );
|
167 |
if ( isset( $params['field']['data']['display'] )
|
175 |
}
|
176 |
$output = $field_value;
|
177 |
}
|
178 |
+
|
179 |
+
return $output;
|
180 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/skype.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
/**
|
@@ -59,7 +59,7 @@ function wpcf_fields_textarea_view($params)
|
|
59 |
// If it wasn't wrapped then remove the wrapping wpautop has added.
|
60 |
if (!empty($value) && strpos($value, '<p>') === 0 && strrpos($value, "</p>\n") == strlen($value) - 5) {
|
61 |
// unwrapp the <p> ..... </p> if is no <p> inside, to avoid remove <p> if is nessary
|
62 |
-
if (
|
63 |
$value = substr($value, 3, -5);
|
64 |
}
|
65 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/textarea.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
/**
|
59 |
// If it wasn't wrapped then remove the wrapping wpautop has added.
|
60 |
if (!empty($value) && strpos($value, '<p>') === 0 && strrpos($value, "</p>\n") == strlen($value) - 5) {
|
61 |
// unwrapp the <p> ..... </p> if is no <p> inside, to avoid remove <p> if is nessary
|
62 |
+
if ( strpos($value, '<p>', 1 ) === false ) {
|
63 |
$value = substr($value, 3, -5);
|
64 |
}
|
65 |
}
|
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
* $HeadURL:
|
5 |
-
* $LastChangedDate: 2014-
|
6 |
-
* $LastChangedRevision:
|
7 |
-
* $LastChangedBy:
|
8 |
*
|
9 |
*/
|
10 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/fields/video.php $
|
5 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
6 |
+
* $LastChangedRevision: 1012704 $
|
7 |
+
* $LastChangedBy: iworks $
|
8 |
*
|
9 |
*/
|
10 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Import/export data.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/import-export.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/*
|
3 |
* Import/export data.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/import-export.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -4,10 +4,10 @@
|
|
4 |
*
|
5 |
* Since Types 1.2
|
6 |
*
|
7 |
-
* $HeadURL:
|
8 |
-
* $LastChangedDate: 2014-
|
9 |
-
* $LastChangedRevision:
|
10 |
-
* $LastChangedBy:
|
11 |
*
|
12 |
*/
|
13 |
|
@@ -158,12 +158,12 @@ if ( defined( 'MODMAN_PLUGIN_NAME' ) ) {
|
|
158 |
$sections[_TYPES_MODULE_MANAGER_KEY_] = array(
|
159 |
'title' => __( 'Post Types', 'wpcf' ),
|
160 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
161 |
-
'icon_css' => 'icon-types ont-icon-
|
162 |
);
|
163 |
$sections[_GROUPS_MODULE_MANAGER_KEY_] = array(
|
164 |
'title' => __( 'Field Groups', 'wpcf' ),
|
165 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
166 |
-
'icon_css' => 'icon-types ont-icon-
|
167 |
);
|
168 |
// no individual fields are exported
|
169 |
/* $sections[_FIELDS_MODULE_MANAGER_KEY_]=array(
|
@@ -173,7 +173,7 @@ if ( defined( 'MODMAN_PLUGIN_NAME' ) ) {
|
|
173 |
$sections[_TAX_MODULE_MANAGER_KEY_] = array(
|
174 |
'title' => __( 'Taxonomies', 'wpcf' ),
|
175 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
176 |
-
'icon_css' => 'icon-types ont-icon-
|
177 |
);
|
178 |
|
179 |
return $sections;
|
4 |
*
|
5 |
* Since Types 1.2
|
6 |
*
|
7 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/module-manager.php $
|
8 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
9 |
+
* $LastChangedRevision: 1012704 $
|
10 |
+
* $LastChangedBy: iworks $
|
11 |
*
|
12 |
*/
|
13 |
|
158 |
$sections[_TYPES_MODULE_MANAGER_KEY_] = array(
|
159 |
'title' => __( 'Post Types', 'wpcf' ),
|
160 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
161 |
+
'icon_css' => 'icon-types-logo ont-icon-16 ont-color-orange'
|
162 |
);
|
163 |
$sections[_GROUPS_MODULE_MANAGER_KEY_] = array(
|
164 |
'title' => __( 'Field Groups', 'wpcf' ),
|
165 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
166 |
+
'icon_css' => 'icon-types-logo ont-icon-16 ont-color-orange'
|
167 |
);
|
168 |
// no individual fields are exported
|
169 |
/* $sections[_FIELDS_MODULE_MANAGER_KEY_]=array(
|
173 |
$sections[_TAX_MODULE_MANAGER_KEY_] = array(
|
174 |
'title' => __( 'Taxonomies', 'wpcf' ),
|
175 |
'icon' => WPCF_EMBEDDED_RES_RELPATH . '/images/types-icon-color_12X12.png',
|
176 |
+
'icon_css' => 'icon-types-logo ont-icon-16 ont-color-orange'
|
177 |
);
|
178 |
|
179 |
return $sections;
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Post relationship code.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/post-relationship.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/editor-support/post-relationship-editor-support.php';
|
2 |
/*
|
3 |
* Post relationship code.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/post-relationship.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/editor-support/post-relationship-editor-support.php';
|
@@ -101,12 +101,23 @@ function wpcf_admin_userprofile_init($user_id){
|
|
101 |
$output .= '
|
102 |
<div class="wpcf-profile-field-line">
|
103 |
<div class="wpcf-profile-line-left">
|
104 |
-
' . $config['title'] .
|
105 |
</div>
|
106 |
<div class="wpcf-profile-line-right">
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
$config['title'] = $config['description'] = '';
|
109 |
-
$output .= wptoolset_form_field( 'your-profile', $config, $meta )
|
|
|
|
|
|
|
|
|
110 |
</div>
|
111 |
</div>';
|
112 |
}
|
@@ -318,6 +329,40 @@ function wpcf_admin_userprofilesave_init($user_id){
|
|
318 |
global $wpcf;
|
319 |
$errors = false;
|
320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
// Save meta fields
|
322 |
if ( !empty( $_POST['wpcf'] ) ) {
|
323 |
foreach ( $_POST['wpcf'] as $field_slug => $field_value ) {
|
101 |
$output .= '
|
102 |
<div class="wpcf-profile-field-line">
|
103 |
<div class="wpcf-profile-line-left">
|
104 |
+
' . $config['title'] . '
|
105 |
</div>
|
106 |
<div class="wpcf-profile-line-right">
|
107 |
+
';
|
108 |
+
$description = false;
|
109 |
+
if ( !empty($config['description'])) {
|
110 |
+
$description = sprintf(
|
111 |
+
'<span class="description">%s</span>',
|
112 |
+
$config['description']
|
113 |
+
);
|
114 |
+
}
|
115 |
$config['title'] = $config['description'] = '';
|
116 |
+
$output .= wptoolset_form_field( 'your-profile', $config, $meta );
|
117 |
+
if ( $description ) {
|
118 |
+
$output .= $description;
|
119 |
+
}
|
120 |
+
$output .= '
|
121 |
</div>
|
122 |
</div>';
|
123 |
}
|
329 |
global $wpcf;
|
330 |
$errors = false;
|
331 |
|
332 |
+
/**
|
333 |
+
* check checkbox type fields to delete or save empty if needed
|
334 |
+
*/
|
335 |
+
$groups = wpcf_admin_usermeta_get_groups_fields();
|
336 |
+
foreach ( $groups as $group ) {
|
337 |
+
if ( !array_key_exists( 'fields', $group ) || empty( $group['fields'] ) ) {
|
338 |
+
continue;
|
339 |
+
}
|
340 |
+
foreach( $group['fields'] as $field ) {
|
341 |
+
switch ( $field['type'] ) {
|
342 |
+
case 'checkboxes':
|
343 |
+
if (
|
344 |
+
!array_key_exists('wpcf', $_POST)
|
345 |
+
|| !array_key_exists( $field['slug'], $_POST['wpcf'] )
|
346 |
+
) {
|
347 |
+
delete_user_meta($user_id, $field['meta_key']);
|
348 |
+
}
|
349 |
+
break;
|
350 |
+
case 'checkbox':
|
351 |
+
if (
|
352 |
+
!array_key_exists('wpcf', $_POST)
|
353 |
+
|| !array_key_exists( $field['slug'], $_POST['wpcf'] )
|
354 |
+
) {
|
355 |
+
if ( 'yes' == $field['data']['save_empty'] ) {
|
356 |
+
$_POST['wpcf'][$field['slug']] = 0;
|
357 |
+
} else {
|
358 |
+
delete_user_meta($user_id, $field['meta_key']);
|
359 |
+
}
|
360 |
+
}
|
361 |
+
break;
|
362 |
+
}
|
363 |
+
}
|
364 |
+
}
|
365 |
+
|
366 |
// Save meta fields
|
367 |
if ( !empty( $_POST['wpcf'] ) ) {
|
368 |
foreach ( $_POST['wpcf'] as $field_slug => $field_value ) {
|
@@ -8,10 +8,10 @@
|
|
8 |
* Values:
|
9 |
* 0 nothing (ignore), 1 copy, 2 translate
|
10 |
*
|
11 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/embedded/includes/wpml.php $
|
12 |
-
* $LastChangedDate: 2014-
|
13 |
-
* $LastChangedRevision:
|
14 |
-
* $LastChangedBy:
|
15 |
*
|
16 |
*/
|
17 |
|
@@ -160,7 +160,7 @@ function wpcf_translate( $name, $string, $context = 'plugin Types' ) {
|
|
160 |
if ( !function_exists( 'icl_t' ) || !is_string($string) || empty($string) ) {
|
161 |
return $string;
|
162 |
}
|
163 |
-
return icl_t( $context, $name,
|
164 |
}
|
165 |
|
166 |
/**
|
8 |
* Values:
|
9 |
* 0 nothing (ignore), 1 copy, 2 translate
|
10 |
*
|
11 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/includes/wpml.php $
|
12 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
13 |
+
* $LastChangedRevision: 1012704 $
|
14 |
+
* $LastChangedBy: iworks $
|
15 |
*
|
16 |
*/
|
17 |
|
160 |
if ( !function_exists( 'icl_t' ) || !is_string($string) || empty($string) ) {
|
161 |
return $string;
|
162 |
}
|
163 |
+
return icl_t( $context, $name, stripslashes( $string ) );
|
164 |
}
|
165 |
|
166 |
/**
|
@@ -1,1933 +0,0 @@
|
|
1 |
-
# This file was generated by WPML
|
2 |
-
# WPML is a WordPress plugin that can turn any WordPress site into a full featured multilingual content management system.
|
3 |
-
# http://wpml.org
|
4 |
-
msgid ""
|
5 |
-
msgstr ""
|
6 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
7 |
-
"Content-Transfer-Encoding: 8bit\n"
|
8 |
-
"Project-Id-Version: \n"
|
9 |
-
"POT-Creation-Date: \n"
|
10 |
-
"PO-Revision-Date: \n"
|
11 |
-
"Last-Translator: \n"
|
12 |
-
"Language-Team: \n"
|
13 |
-
"MIME-Version: 1.0\n"
|
14 |
-
|
15 |
-
msgid "Required"
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
msgid "Email"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
msgid "Date"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
msgid "Digits"
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
msgid "Numeric"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
msgid "You must define the $operator parameter for Wpcf_Cake_Validation::comparison()"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
msgid "You must define a regular expression for Wpcf_Cake_Validation::custom()"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
msgid "Could not find %s class, unable to complete validation."
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
msgid "Method %s does not exist on %s unable to complete validation."
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
msgid "Error while parsing the evaluate expression"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
msgid "Conditional expression includes illegal characters"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
msgid "Correct conditional expression has not been found"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
msgid "Don't show this message again"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
msgid "Get Types and Views"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
msgid "Once you have installed the full versions of Types and Views you'll be able to create and edit your own content types, layouts and listings."
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
msgid "<a href=\"%s\" target=\"_blank\">Learn more</a>"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
msgid "Your theme was created using <strong>Types</strong> and <strong>Views</strong>. Developers use these two plugins to build complex websites, without coding."
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
msgid "Right now, you're using the embedded version, which creates the layout but doesn't include the editing interface. You can upgrade to the full version and customize your site yourself - you don't even need to know how to program!"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
msgid "Every purchase of Views entitles you to commercial-grade support and upgrades for one year."
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
msgid "You can use Types and Views for as many themes and websites as you like."
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
msgid "View templates"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
msgid "Post View"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
msgid "Taxonomy View"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
msgid "Post View"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
msgid "Taxonomy View"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
msgid "Basic"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
msgid "View"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
msgid "Taxonomy"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
msgid "Other Fields"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
msgid "Search"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
msgid "Clear"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
msgid "Some pointer hints have been hidden on this page. %sShow them again%s"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
msgid "Add New View Template"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
msgid "Edit View Template"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
msgid "New View Template"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
msgid "View Views-Templates"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
msgid "Search View Templates"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
msgid "No view templates found"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
msgid "No view templates found in Trash"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
msgid "Content Template"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
msgid "None"
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
msgid "<strong>View template debug: </strong>Calling function is <strong>%s</strong>"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
msgid "Insert Views Shortcode"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
msgid "Views"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
msgid "Convert URLs to point to translated content in Views and View Templates"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
msgid "Settings Saved"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
msgid "Save"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
msgid "Views for Post Type archive loops"
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
msgid "All about archive Views"
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
msgid "Views for Taxonomy archive loops"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
msgid "Home/Blog"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
msgid "Search results"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
msgid "Author archives"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
msgid "Year archives"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
msgid "Month archives"
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
msgid "Day archives"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
msgid "%s using \"%s\""
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
msgid "There are no Views being used for Post Type archive loops."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
msgid "Edit"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
msgid "Create a new View for this listing page"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
msgid "Cancel"
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
msgid "There are no Views being used for Taxonomy archive loops."
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
msgid "post type <strong>%s</strong>"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
msgid "taxonomy <strong>%s</strong>"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
msgid "This View isn't being used for any archive loops."
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
msgid "This View is being used for these archive loops: %s"
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
msgid "%s-archive"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
msgid "%s-taxonomy-archive"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
msgid "OK"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
msgid "Loop"
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
msgid "Use this View"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
msgid "Use this View for these archive loops:"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
msgid "Post type loops"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
msgid "Taxonomy loops"
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
msgid "The url_param is missing from the wpv-control shortcode argument."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
msgid "The \"type\" or \"field\" needs to be set in the wpv-control shortcode argument."
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
msgid "Types plugin is required."
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
msgid "Empty field values or incorrect field defined. "
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
msgid "Select date"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
msgid "Select the views xml file to upload from your computer: "
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
msgid "Export"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
msgid "Import"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
msgid "Could not read the Views import file."
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
msgid "Unable to open zip file"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
msgid "The Simple XML library is missing."
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
msgid "The XML file (%s) could not be read."
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
msgid "The XML could not be read."
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
msgid "Failed to update view-template - %s."
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
msgid "Failed to update view template - %s."
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
msgid "Failed to create view - %s."
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
msgid "%d View Templates found in the file. %d have been created and %d have been over written."
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
msgid "%d existing View Templates were deleted."
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
msgid "Failed to update view - %s."
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
msgid "%d Views found in the file. %d have been created and %d have been over written."
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
msgid "%d existing Views were deleted."
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
msgid "%s could not be found"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
msgid "Settings updated"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
msgid "Import Views and View Templates for your Theme"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
msgid "Import Views and View Templates"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
msgid "Settings:"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
msgid "Bulk overwrite if View exists"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
msgid "Delete any existing Views that are not in the import"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
msgid "Bulk overwrite if View Template exists"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
msgid "Delete any existing View Templates that are not in the import"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
msgid "Overwrite Views settings"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
msgid "Page %s"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
msgid "ID"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
msgid "Title"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
msgid "Title with a link"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
msgid "Body"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
msgid "Excerpt"
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
msgid "Author"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
msgid "Date"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
msgid "URL"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
msgid "Featured image"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
msgid "Comments number"
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
msgid "Edit Link"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
msgid "Post type"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
msgid "Field"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
msgid "Comment title"
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
msgid "Comment body"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
msgid "Comment Author"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
msgid "Comment Date"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
msgid "Taxonomy title"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
msgid "Taxonomy title with a link"
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
msgid "Taxonomy URL"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
msgid "Taxonomy slug"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
msgid "Taxonomy description"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
msgid "Taxonomy post count"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
msgid "Bloginfo value"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
msgid "Archive link"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
msgid "Current user info"
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
msgid "Add to cart button"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
msgid "Edit "
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
msgid "Edit This"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
msgid "No Comments"
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
msgid "1 Comment"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
msgid "% Comments"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
msgid "View template"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
msgid "View Form"
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
msgid "Category"
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
msgid "Displays a View"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
msgid "WP Views"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
msgid "No views defined. You can add them <a%s>here</a>."
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
msgid "Displays the filter section of a View."
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
msgid "WP Views Filter"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
msgid "Edit view"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
msgid "Title:"
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
msgid "View:"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
msgid "Target page:"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
msgid "You have <strong>Views</strong> import pending. %sClick here to import.%s %sDismiss message.%s"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
msgid "Add New View"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
msgid "Edit View"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
msgid "New View"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
msgid "View Views"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
msgid "Search Views"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
msgid "No views found"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
msgid "No views found in Trash"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
msgid "Import Views for theme"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
msgid "View not found"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
msgid "Thumbnail"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
msgid "Getting started"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
msgid "Views Import"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
msgid "Views import complete"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
msgid "Views are lists and groups of content, like a listing or showcase page. On your theme the following Views are defined:"
|
508 |
-
msgstr ""
|
509 |
-
|
510 |
-
msgid "View Templates are applied to pages to create different layouts. On your theme the following View Templates are defined:"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
msgid "If you want to edit these or create your own you can purchase the full version of <strong>Views</strong> from %s"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
msgid "View updated."
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
msgid "Custom field updated."
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
msgid "Custom field deleted."
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
msgid "View restored to revision from %s"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
msgid "View published."
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
msgid "View saved."
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
msgid "View submitted."
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
msgid "View scheduled for: <strong>%1$s</strong>."
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
msgid "M j, Y @ G:i"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
msgid "View draft updated"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
msgid "View template updated."
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
msgid "View template restored to revision from %s"
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
msgid "View template published."
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
msgid "View template saved."
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
msgid "View template submitted."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
msgid "View template scheduled for: <strong>%1$s</strong>."
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
msgid "View template draft updated"
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
msgid "An Unexpected HTTP Error occurred during the API request."
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
msgid "An unknown error occurred."
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
msgid "View Template Help"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
msgid "View Template Settings"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
msgid "View Template CSS and JS"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
msgid "Go to the %sSettings page%s to apply this template to content types."
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
msgid "Edit view template"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
msgid "View Template for Post Types"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
msgid "Using View Templates for Archive and Taxonomy Pages"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
msgid "View Template settings for Taxonomy archive loops"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
msgid "Theme support for View Templates"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
msgid "There are no View Templates being used for single post types."
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
msgid "There are no View Templates being used for post types in taxonomy archive loops."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
msgid "%d %ss use a different template:"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
msgid "Update all %ss now"
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
msgid "<span id=\"%s\">%d</span> %ss have updated to use this template."
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
msgid "All %s are using this template"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
msgid "There are no %s"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
msgid "There are no View Templates being used for Taxonomy archive loops."
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
msgid "<strong>This template includes single-ended shortcodes</strong>. Please close all shortcodes to avoid processing errors. %sRead more%s"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
msgid "Syntax Highlight On"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
msgid "Syntax Highlight Off"
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
msgid "Here you can modify specific CSS and javascript to be used with this View Template."
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
msgid "Edit CSS"
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
msgid "Close CSS editor"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
msgid "Edit JS"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
msgid "Close JS editor"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
msgid "Normal WordPress output - add paragraphs an breaks and resolve shortcodes"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
msgid "Raw output - only resolve shortcodes without adding line breaks or paragraphs"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
msgid "What is a View Template"
|
655 |
-
msgstr ""
|
656 |
-
|
657 |
-
msgid "Editing instructions"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
msgid "How to apply View Templates to content"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
msgid "View Templates modify the content when called from 'the_content' function. Some themes don't use 'the_content' function but define their own function."
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
msgid "If View Templates don't work with your theme then you can enter the name of the function your theme uses here:"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
msgid "Don't know the name of your theme function?"
|
670 |
-
msgstr ""
|
671 |
-
|
672 |
-
msgid "Enable debugging and go to a page that should display a View Template and Views will display the call function name."
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
msgid "Settings saved"
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
msgid "For single:"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
msgid "For archive loop:"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
msgid "Post Types"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
msgid "Use this View Template (Single)"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
msgid "Usage"
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
msgid "Use this View Template (Archive loop)"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
msgid "Preview"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
msgid "Use this View Template"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
msgid "Content to load"
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
msgid "Filter"
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
msgid "Display"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
msgid "Fields used"
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
msgid "How this View Template is used"
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
msgid "Unformatted"
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
msgid "Ordered List"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
msgid "Unordered List"
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
msgid "Grid"
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
msgid "Table"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
msgid "Single view for "
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
msgid "Archive view for "
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
-
msgid "Loop view for "
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
msgid "This View displays results for an <strong>existing WordPress query</strong>"
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
msgid "No filters selected."
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
msgid "Add another filter term"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
msgid "--- Please select ---"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
msgid "Add filter"
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
msgid "Select what to filter by:"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
msgid "Condition:"
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
msgid "Post Author"
|
763 |
-
msgstr ""
|
764 |
-
|
765 |
-
msgid "Select posts with <strong>%s</strong> as the <strong>author</strong>."
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
msgid "None set"
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
msgid "Select posts with the author's <strong>%s</strong> determined by the URL parameter <strong>\"%s\"</strong>"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
msgid " eg. yoursite/page-with-this-view/?<strong>%s</strong>=%s"
|
775 |
-
msgstr ""
|
776 |
-
|
777 |
-
msgid "Select posts which author's <strong>%s</strong> is set by the View shortcode attribute <strong>\"%s\"</strong>"
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
msgid " eg. [wpv-view name=\"%s\" <strong>%s</strong>=\"%s\"]"
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
msgid "<- Please enter a value here"
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
msgid "<- Only lowercase letters, numbers, hyphens and underscores allowed"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
msgid "<- Only lowercase letters and numbers allowed"
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
msgid "Select posts with the <strong>author</strong> the same as the <strong>current logged in user</strong>."
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
msgid "Post author is the same as the logged in user"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
msgid "Post author is "
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
msgid "Post author's "
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
msgid " is set by this URL parameter: "
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
msgid " is set by this View shortcode attribute: "
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
msgid " OR "
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
msgid " AND "
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
msgid "A taxonomy parameter is missing or incorrect."
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
msgid "%sLearn about filtering by taxonomy%s"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
msgid "Edit this filters group to delete items"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
msgid "Categories"
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
msgid "is <strong>One</strong> of these"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
msgid "is <strong>All</strong> of these"
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
msgid "is <strong>Not one</strong> of these"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
msgid "the same as the <strong>current page</strong>"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
msgid "the same as set by the View shortcode attribute "
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
msgid "the same as set by the URL parameter "
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
msgid "selected by the parent view."
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
msgid "eg. [wpv-view name=\"view-name\" <strong>%s=\"xxxx\"</strong>]"
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
msgid "eg. http://www.example.com/page/?<strong>%s=\"xxxx\"</strong>"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
msgid "Shortcode attribute"
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
msgid "URL parameter"
|
859 |
-
msgstr ""
|
860 |
-
|
861 |
-
msgid "Using : "
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
msgid "Taxonomy name"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
-
msgid "Select posts with taxonomy: "
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
msgid "Taxonomy relationship:"
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
msgid "Relationship to use when querying with multiple taxonomies:"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
msgid "OR"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
msgid "AND"
|
880 |
-
msgstr ""
|
881 |
-
|
882 |
-
msgid "Taxonomy is:"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
msgid "Any of the following"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
msgid "NOT one of the following"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
msgid "All of the following"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
msgid "Value set by the current page"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
msgid "Value set by View shortcode attribute"
|
898 |
-
msgstr ""
|
899 |
-
|
900 |
-
msgid "Value set by URL paremeter"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
msgid "Value set by parent view"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
msgid "Value set by URL parameter"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
msgid "Apply"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
msgid "Submit button"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
msgid "Remove"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
msgid "Add another value"
|
919 |
-
msgstr ""
|
920 |
-
|
921 |
-
msgid "There are no values"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
msgid "Values"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
msgid "Display values"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
msgid "The filter for this is not found."
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
msgid "Use existing custom field values when showing this control"
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
msgid "Use the manually entered values"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
msgid "Use this as the default value"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
msgid "Types auto style"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
msgid "Radio"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
msgid "Checkbox"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
msgid "Checkboxes"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
msgid "Select"
|
955 |
-
msgstr ""
|
956 |
-
|
957 |
-
msgid "Text field"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
msgid "Date picker"
|
961 |
-
msgstr ""
|
962 |
-
|
963 |
-
msgid "Learn more about filter controls"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
msgid "Enable"
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
msgid "Label"
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
msgid "Input type"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
msgid "Input values"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
msgid "Insert the filter section from View - %s"
|
979 |
-
msgstr ""
|
980 |
-
|
981 |
-
msgid "When the form is submitted, go to this post:"
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
msgid "No target posts were found that use this View"
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
msgid "Insert shortcode"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
msgid "Insert View Form"
|
991 |
-
msgstr ""
|
992 |
-
|
993 |
-
msgid "Filter controls: "
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
msgid "Filter controls settings"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
msgid "Custom field - %s"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
msgid " OR"
|
1003 |
-
msgstr ""
|
1004 |
-
|
1005 |
-
msgid " AND"
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
msgid "A custom field parameter is missing or incorrect."
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
msgid "%sLearn about filtering by custom fields%s"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
msgid "Custom field"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
msgid "Constant"
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
msgid "%1$s%2$s, %3$s"
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
msgid "<- Please enter a valid date here"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
msgid "Select posts with custom fields: "
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
msgid "Custom field relationship:"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
msgid "Relationship to use when querying with multiple custom fields:"
|
1033 |
-
msgstr ""
|
1034 |
-
|
1035 |
-
msgid "Comparison function:"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
msgid ", limit to 1 item"
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
msgid ", limit to %d items"
|
1042 |
-
msgstr ""
|
1043 |
-
|
1044 |
-
msgid ", skip first item"
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
-
msgid ", skip %d items"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
msgid "Offset and Limit:"
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
msgid "Limit the number of items returned to"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
msgid "No limit"
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
msgid "Skip these number of items"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
msgid "The pagination and filter control settings generate meta HTML. This meta HTML includes shortcodes and HTML, which you can edit, to fully customize the appearance of this View's filter section."
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
msgid "Generate the new filter content"
|
1066 |
-
msgstr ""
|
1067 |
-
|
1068 |
-
msgid "Keep my edits and update just the input elements (recommended)"
|
1069 |
-
msgstr ""
|
1070 |
-
|
1071 |
-
msgid "I will apply the changes to the meta HTML manually"
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
msgid "Overwrite all my edits and generate the filter from scratch"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
msgid "dismiss"
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
msgid "Learn more about adding %sfilter controls%s"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
msgid "Submit button is hidden"
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
msgid "The filter submit button is hidden."
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
msgid "Change it from %s to %s"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
msgid "Adding front end filter controls"
|
1093 |
-
msgstr ""
|
1094 |
-
|
1095 |
-
msgid "When filtering by URL paremeters you can add <strong>front end filter controls</strong> to the View. This allows the user to control what items are displayed."
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
msgid "Controls should be added between the [wpv-filter-controls] and [/wpv-filter-controls] shortcodes."
|
1099 |
-
msgstr ""
|
1100 |
-
|
1101 |
-
msgid "For Types fields you can use the \"Types auto style\" and the appropriate control type will be used for the Types field."
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
msgid "Custom field controls"
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
msgid "Custom field"
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
msgid "URL_PARAM"
|
1111 |
-
msgstr ""
|
1112 |
-
|
1113 |
-
msgid "Type of control"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
msgid "Add control"
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
msgid "Taxonomy controls"
|
1120 |
-
msgstr ""
|
1121 |
-
|
1122 |
-
msgid "There are no custom field filters using URL_PARAM to filter the results. See %sPassing Arguments to Views »%s"
|
1123 |
-
msgstr ""
|
1124 |
-
|
1125 |
-
msgid "There are no taxonomy filters using URL_PARAM to filter the results. See %sPassing Arguments to Views »%s"
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
msgid "The taxonomy filter needs to be set to \"Taxonomy slug\" for taxonomy type \""
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
msgid "View/Edit Meta HTML"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
msgid "<strong>Meta HTML</strong> - This is used to add front end controls to a View. It gets generated from the View Query settings and can be modified to suit."
|
1135 |
-
msgstr ""
|
1136 |
-
|
1137 |
-
msgid "Changes can't be applied. It appears that you made manual modifications to the Meta HTML."
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
msgid "(your edits will be displayed and you can apply them again)"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
msgid "It looks like you manually edited the meta-HTML for the filter. Please choose how to update:"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
msgid "<strong>Your edits are shown below:</strong>"
|
1147 |
-
msgstr ""
|
1148 |
-
|
1149 |
-
msgid "* These updates will take effect when you save the view."
|
1150 |
-
msgstr ""
|
1151 |
-
|
1152 |
-
msgid "Close"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
msgid "<strong>CSS</strong> - This is used to add custom CSS to a View query."
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
msgid "<strong>JS</strong> - This is used to add custom javascript to a View query."
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
msgid "Manage Media"
|
1162 |
-
msgstr ""
|
1163 |
-
|
1164 |
-
msgid "<strong>Media</strong> - This is used to add images to a View output."
|
1165 |
-
msgstr ""
|
1166 |
-
|
1167 |
-
msgid "Upload images"
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
msgid "Add Media"
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
msgid "Edit media items"
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
msgid "Edit media items"
|
1177 |
-
msgstr ""
|
1178 |
-
|
1179 |
-
msgid "Close Media manager"
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
msgid "post date"
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
msgid "post title"
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
msgid "post ID"
|
1189 |
-
msgstr ""
|
1190 |
-
|
1191 |
-
msgid "menu order"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
msgid "random order"
|
1195 |
-
msgstr ""
|
1196 |
-
|
1197 |
-
msgid "Field - %s"
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
msgid "descending"
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
msgid "ascending"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
msgid ", ordered by <strong>%s</strong>, <strong>%s</strong>"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
msgid "Order by:"
|
1210 |
-
msgstr ""
|
1211 |
-
|
1212 |
-
msgid "post id"
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
msgid "Descending"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
msgid "Ascending"
|
1219 |
-
msgstr ""
|
1220 |
-
|
1221 |
-
msgid "Post parent"
|
1222 |
-
msgstr ""
|
1223 |
-
|
1224 |
-
msgid "parent is <strong>%s</strong>"
|
1225 |
-
msgstr ""
|
1226 |
-
|
1227 |
-
msgid "Select posts whose parent is <strong>%s</strong>."
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
msgid "Taxonomy parent"
|
1231 |
-
msgstr ""
|
1232 |
-
|
1233 |
-
msgid "Select taxonomy whose parent is <strong>%s</strong>."
|
1234 |
-
msgstr ""
|
1235 |
-
|
1236 |
-
msgid "parent is the <strong>current page</strong>"
|
1237 |
-
msgstr ""
|
1238 |
-
|
1239 |
-
msgid "Select posts whose parent is the <strong>current page</strong>."
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
msgid "Select taxonomy whose parent is the value set by the <strong>parent view</strong>."
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
msgid "Parent is the current page"
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
msgid "Parent is:"
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
msgid "Parent is the taxonomy selected by the <strong>parent view</strong>"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
msgid "Post Relationship - Post is a child of"
|
1255 |
-
msgstr ""
|
1256 |
-
|
1257 |
-
msgid "Select related posts that are a child of <strong>%s</strong>."
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
msgid "Post type <strong>%s</strong> doesn't belong to any other post type"
|
1261 |
-
msgstr ""
|
1262 |
-
|
1263 |
-
msgid "Post type <strong>%s</strong> is a child of <strong>%s</strong> post type"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
msgid " and "
|
1267 |
-
msgstr ""
|
1268 |
-
|
1269 |
-
msgid "Post type <strong>%s</strong> is a child of <strong>%s</strong> post types"
|
1270 |
-
msgstr ""
|
1271 |
-
|
1272 |
-
msgid "Select related posts that are a <strong>child</strong> of the <strong>post where this View is inserted</strong>."
|
1273 |
-
msgstr ""
|
1274 |
-
|
1275 |
-
msgid "Select related posts that are a <strong>child</strong> to the <strong>Post set by parent View</strong>."
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
msgid "Post where this View is inserted"
|
1279 |
-
msgstr ""
|
1280 |
-
|
1281 |
-
msgid "Post set by parent View"
|
1282 |
-
msgstr ""
|
1283 |
-
|
1284 |
-
msgid "Specific:"
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
msgid "Querying and Displaying Child Posts"
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
msgid "<strong>%s</strong>"
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
msgid "Don't include current page in query result"
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
msgid "<strong>ALL</strong> post types"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
msgid "Post search"
|
1300 |
-
msgstr ""
|
1301 |
-
|
1302 |
-
msgid "Filter by <strong>search</strong> term: <strong>%s</strong>"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
msgid "Filter by this search term: <strong>%s</strong>."
|
1306 |
-
msgstr ""
|
1307 |
-
|
1308 |
-
msgid "Show a <strong>search box</strong> for vistors"
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
msgid "Show a <strong>search box</strong> for vistors."
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
msgid "Filter by <strong>search box</strong>"
|
1315 |
-
msgstr ""
|
1316 |
-
|
1317 |
-
msgid "The search box will be added <strong>manually</strong>. The search box shortcode to use is <strong>[wpv-filter-search-box]</strong>."
|
1318 |
-
msgstr ""
|
1319 |
-
|
1320 |
-
msgid "Taxonomy search"
|
1321 |
-
msgstr ""
|
1322 |
-
|
1323 |
-
msgid "Search for a specific text:"
|
1324 |
-
msgstr ""
|
1325 |
-
|
1326 |
-
msgid "Add a search box for visitors"
|
1327 |
-
msgstr ""
|
1328 |
-
|
1329 |
-
msgid "I’ll add the search box to the HTML manually"
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
-
msgid "Post status"
|
1333 |
-
msgstr ""
|
1334 |
-
|
1335 |
-
msgid "status of "
|
1336 |
-
msgstr ""
|
1337 |
-
|
1338 |
-
msgid "Select posts with status of "
|
1339 |
-
msgstr ""
|
1340 |
-
|
1341 |
-
msgid " or "
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
msgid "any status."
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
msgid "Select posts with any status."
|
1348 |
-
msgstr ""
|
1349 |
-
|
1350 |
-
msgid "Taxonomy Term"
|
1351 |
-
msgstr ""
|
1352 |
-
|
1353 |
-
msgid "Taxonomy is <strong>One</strong> of these"
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
msgid "Taxonomy set by the current page"
|
1357 |
-
msgstr ""
|
1358 |
-
|
1359 |
-
msgid "Taxonomy: "
|
1360 |
-
msgstr ""
|
1361 |
-
|
1362 |
-
msgid "is one of these"
|
1363 |
-
msgstr ""
|
1364 |
-
|
1365 |
-
msgid "set by the current page"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
msgid "This View selects <strong>Taxonomy</strong> of type <strong>%s</strong>"
|
1369 |
-
msgstr ""
|
1370 |
-
|
1371 |
-
msgid "Don't show empty terms"
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
msgid "Include terms that have non-empty descendants"
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
msgid "Include children in the post count"
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
msgid "Posts (This View returns posts)"
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
msgid "Taxonomy (This View returns taxonomies)"
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
msgid "Select what content type to load:"
|
1387 |
-
msgstr ""
|
1388 |
-
|
1389 |
-
msgid "Radios"
|
1390 |
-
msgstr ""
|
1391 |
-
|
1392 |
-
msgid "Drop down list"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
msgid "Log into your account at <a href=\"%s\">%s</a> and go to <a href=\"%s\">%s</a> for details."
|
1396 |
-
msgstr ""
|
1397 |
-
|
1398 |
-
msgid "Views Import / Export"
|
1399 |
-
msgstr ""
|
1400 |
-
|
1401 |
-
msgid "Export Views and View Templates"
|
1402 |
-
msgstr ""
|
1403 |
-
|
1404 |
-
msgid "Download all Views and View Templates"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
msgid "When importing to theme:"
|
1408 |
-
msgstr ""
|
1409 |
-
|
1410 |
-
msgid "ask user for approval"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
msgid "import automatically"
|
1414 |
-
msgstr ""
|
1415 |
-
|
1416 |
-
msgid "Affiliate details for theme designers:"
|
1417 |
-
msgstr ""
|
1418 |
-
|
1419 |
-
msgid "Affiliate ID:"
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
msgid "Affiliate Key:"
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
msgid "You only need to enter affiliate settings if you are a theme designer and want to receive affiliate commission."
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
msgid "The layout-style and fields that you selected generate meta HTML. This meta HTML includes shortcodes and HTML, which you can edit, to fully customize the appearance of this View's content output section."
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
msgid "Generate the new layout content"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
msgid "<strong>Meta HTML</strong> - This is used to layout the posts found. It gets generated from the View Layout settings and can be modified to suit."
|
1435 |
-
msgstr ""
|
1436 |
-
|
1437 |
-
msgid "<strong>CSS</strong> - This is used to add custom CSS to a View layout."
|
1438 |
-
msgstr ""
|
1439 |
-
|
1440 |
-
msgid "<strong>JS</strong> - This is used to add custom javascript to a View layout."
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
msgid "The view layout settings will be copied from the original"
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
msgid "Learn about different layouts"
|
1447 |
-
msgstr ""
|
1448 |
-
|
1449 |
-
msgid "Using view template:"
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
msgid "Using View template:"
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
-
msgid "Fields to include:"
|
1456 |
-
msgstr ""
|
1457 |
-
|
1458 |
-
msgid "Click on <strong>Add field</strong> to insert additional fields. Drag them to reorder, or delete fields that you don't need."
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
msgid "Click on <strong>Add field</strong> to insert fields to this View."
|
1462 |
-
msgstr ""
|
1463 |
-
|
1464 |
-
msgid "Prefix"
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
msgid "Row Title"
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
msgid "Suffix"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
msgid "Add field"
|
1474 |
-
msgstr ""
|
1475 |
-
|
1476 |
-
msgid "Want to add complex fields?"
|
1477 |
-
msgstr ""
|
1478 |
-
|
1479 |
-
msgid "Learn about using View Templates to customize fields."
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
msgid "Want to display posts that belong to this taxonomy? Learn about %sinserting child Views to Taxonomy Views%s."
|
1483 |
-
msgstr ""
|
1484 |
-
|
1485 |
-
msgid " - Use to layout child taxonomy terms"
|
1486 |
-
msgstr ""
|
1487 |
-
|
1488 |
-
msgid " - Use to layout posts for the current taxonomy term"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
msgid "Layout style:"
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
msgid "Ordered list"
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
msgid "Unordered list"
|
1498 |
-
msgstr ""
|
1499 |
-
|
1500 |
-
msgid "Layout the items using a HTML table"
|
1501 |
-
msgstr ""
|
1502 |
-
|
1503 |
-
msgid "Number of columns:"
|
1504 |
-
msgstr ""
|
1505 |
-
|
1506 |
-
msgid "Create a table of items with a column for each field"
|
1507 |
-
msgstr ""
|
1508 |
-
|
1509 |
-
msgid "Include field names in table headings"
|
1510 |
-
msgstr ""
|
1511 |
-
|
1512 |
-
msgid "Items are added to an ordered list"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
msgid "Items are added to an unordered list"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
msgid "* Views requires Types 1.0.2 or greater for best results when adding fields."
|
1519 |
-
msgstr ""
|
1520 |
-
|
1521 |
-
msgid "Are you sure you want to change the layout?"
|
1522 |
-
msgstr ""
|
1523 |
-
|
1524 |
-
msgid "It appears that you made modifications to the layout."
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
msgid "Additional Javascript files to be loaded with this View (comma separated): "
|
1528 |
-
msgstr ""
|
1529 |
-
|
1530 |
-
msgid "Fade"
|
1531 |
-
msgstr ""
|
1532 |
-
|
1533 |
-
msgid "Fade fast"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
msgid "Fade slow"
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
msgid "Slide Left"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
msgid "Slide Right"
|
1543 |
-
msgstr ""
|
1544 |
-
|
1545 |
-
msgid "Slide Up"
|
1546 |
-
msgstr ""
|
1547 |
-
|
1548 |
-
msgid "Slide Down"
|
1549 |
-
msgstr ""
|
1550 |
-
|
1551 |
-
msgid "Show <strong>all</strong> items. Pagination is disabled."
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
msgid "Show <strong>%s</strong> items per page."
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
msgid "Show <strong>page selector</strong> drop down "
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
msgid "Show <strong>page selector</strong> links "
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
msgid "Show <strong>previous</strong> and <strong>next</strong> page controls."
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
msgid "and <strong>previous</strong> and <strong>next</strong> page controls."
|
1567 |
-
msgstr ""
|
1568 |
-
|
1569 |
-
msgid "Slide horizontally"
|
1570 |
-
msgstr ""
|
1571 |
-
|
1572 |
-
msgid "Slide vertically"
|
1573 |
-
msgstr ""
|
1574 |
-
|
1575 |
-
msgid " Use <strong>AJAX</strong> to update page content using <strong>%s</strong> transition effect."
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
msgid " Use <strong>AJAX</strong> to update page content."
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
msgid "<strong>Auto transition:</strong> Display <strong>%s</strong> items per page for <strong>%s</strong> seconds and then <strong>%s</strong> to the next items."
|
1582 |
-
msgstr ""
|
1583 |
-
|
1584 |
-
msgid "No pagination"
|
1585 |
-
msgstr ""
|
1586 |
-
|
1587 |
-
msgid "All query results will display."
|
1588 |
-
msgstr ""
|
1589 |
-
|
1590 |
-
msgid "Pagination enabled with manual transition"
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
msgid "The query results will display in pages, which visitors will switch."
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
msgid "Pagination enabled with automatic transition"
|
1597 |
-
msgstr ""
|
1598 |
-
|
1599 |
-
msgid "The query results will display in pages, which will switch automatically (good for sliders)."
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
msgid "Views Pagination"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
msgid "Use as spinner image"
|
1606 |
-
msgstr ""
|
1607 |
-
|
1608 |
-
msgid "Number of items per page:"
|
1609 |
-
msgstr ""
|
1610 |
-
|
1611 |
-
msgid "Include a page selector"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
msgid "Drop down"
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
-
msgid "Links"
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
msgid "Include next page and previous page controls"
|
1621 |
-
msgstr ""
|
1622 |
-
|
1623 |
-
msgid "AJAX:"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
msgid "Pagination updates the entire page"
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
msgid "Pagination updates only the view (use AJAX)"
|
1630 |
-
msgstr ""
|
1631 |
-
|
1632 |
-
msgid "Transition effect"
|
1633 |
-
msgstr ""
|
1634 |
-
|
1635 |
-
msgid "Preload images before transition"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
msgid "Show each page for:"
|
1639 |
-
msgstr ""
|
1640 |
-
|
1641 |
-
msgid "seconds"
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
msgid "Transition effect:"
|
1645 |
-
msgstr ""
|
1646 |
-
|
1647 |
-
msgid "Include page selector links"
|
1648 |
-
msgstr ""
|
1649 |
-
|
1650 |
-
msgid "Cache pages"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
msgid "Pre-load the next and previous pages - avoids loading delays when users move between pages"
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
msgid "Spinner graphics from Views"
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
msgid "My custom spinner graphics"
|
1660 |
-
msgstr ""
|
1661 |
-
|
1662 |
-
msgid "Upload image"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
msgid "Upload Image"
|
1666 |
-
msgstr ""
|
1667 |
-
|
1668 |
-
msgid "No spinner graphics"
|
1669 |
-
msgstr ""
|
1670 |
-
|
1671 |
-
msgid "Javascript callback function on next slide"
|
1672 |
-
msgstr ""
|
1673 |
-
|
1674 |
-
msgid "View Templates"
|
1675 |
-
msgstr ""
|
1676 |
-
|
1677 |
-
msgid "Error during View import"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
msgid "Error during View Template import"
|
1681 |
-
msgstr ""
|
1682 |
-
|
1683 |
-
msgid "Settings"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
msgid "Import/Export"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
msgid "Help"
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
-
msgid "View Query - Choose what content to load"
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
msgid "View Layout - Edit the layout"
|
1696 |
-
msgstr ""
|
1697 |
-
|
1698 |
-
msgid "Views Help"
|
1699 |
-
msgstr ""
|
1700 |
-
|
1701 |
-
msgid "Module Manager"
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
msgid "Learn about %sediting Views HTML%s"
|
1705 |
-
msgstr ""
|
1706 |
-
|
1707 |
-
msgid "Hide this editor"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
msgid "The view query settings will be copied from the original"
|
1711 |
-
msgstr ""
|
1712 |
-
|
1713 |
-
msgid "Learn how to create a View and how to display it in the complete %sViews Guide%s"
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
msgid "Create <strong>View Templates</strong> and attach them to content types to display content in complex ways. You can read more detail about View Templates on our website:"
|
1717 |
-
msgstr ""
|
1718 |
-
|
1719 |
-
msgid "On this page you have the following options:"
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
msgid "<strong>Add New</strong> – create a new View Template"
|
1723 |
-
msgstr ""
|
1724 |
-
|
1725 |
-
msgid "Hover over the name of your View Template to get additional options:"
|
1726 |
-
msgstr ""
|
1727 |
-
|
1728 |
-
msgid "<strong>Edit:</strong> Click to Edit the View Template"
|
1729 |
-
msgstr ""
|
1730 |
-
|
1731 |
-
msgid "<strong>Quick Edit:</strong> click to get quick editing options for the View Template, such as title, slug and date"
|
1732 |
-
msgstr ""
|
1733 |
-
|
1734 |
-
msgid "<strong>Trash:</strong> Move the View Template to Trash"
|
1735 |
-
msgstr ""
|
1736 |
-
|
1737 |
-
msgid "If you need additional help with View Templates you can visit our <a href='%s' target='_blank'>support forum »</a>."
|
1738 |
-
msgstr ""
|
1739 |
-
|
1740 |
-
msgid "Use this page to create and edit <strong>View Templates</strong>. For more information about View Templates visit the user guide on our website:"
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
msgid "To Create a View Template"
|
1744 |
-
msgstr ""
|
1745 |
-
|
1746 |
-
msgid "Add a Title"
|
1747 |
-
msgstr ""
|
1748 |
-
|
1749 |
-
msgid "Add shortcodes to the body. You can find these by clicking on the “V” icon"
|
1750 |
-
msgstr ""
|
1751 |
-
|
1752 |
-
msgid "Use HTML mode to style your content (we recommend keeping your styles in style.css or another external stylesheet rather than including them inline)"
|
1753 |
-
msgstr ""
|
1754 |
-
|
1755 |
-
msgid "Use <strong>Views</strong> to filter and display lists in complex and interesting ways. Read more about Views in our user guide:"
|
1756 |
-
msgstr ""
|
1757 |
-
|
1758 |
-
msgid "This page gives you an overview of the Views you have created."
|
1759 |
-
msgstr ""
|
1760 |
-
|
1761 |
-
msgid "It has the following options:"
|
1762 |
-
msgstr ""
|
1763 |
-
|
1764 |
-
msgid "<strong>Add New</strong>: Add a New View"
|
1765 |
-
msgstr ""
|
1766 |
-
|
1767 |
-
msgid "If you hover over a View's name you also have these options:"
|
1768 |
-
msgstr ""
|
1769 |
-
|
1770 |
-
msgid "<strong>Edit</strong>: Click to edit the View<br />\n"
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
-
msgid "<strong>Quick Edit</strong>: click to get quick editing options for the View, such as title, slug and date"
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
msgid "<strong>Trash</strong>: Move the View to Trash"
|
1777 |
-
msgstr ""
|
1778 |
-
|
1779 |
-
msgid "Use this page to create and edit your <strong>Views</strong>. You can read more about creating Views in our user guide:"
|
1780 |
-
msgstr ""
|
1781 |
-
|
1782 |
-
msgid "To Create a View:"
|
1783 |
-
msgstr ""
|
1784 |
-
|
1785 |
-
msgid "Add a Title for your View."
|
1786 |
-
msgstr ""
|
1787 |
-
|
1788 |
-
msgid "Leave the shortcodes that are in your text area. These are for filtering and displaying your content."
|
1789 |
-
msgstr ""
|
1790 |
-
|
1791 |
-
msgid "View Query > Filter: Select how you would like your content to be filtered."
|
1792 |
-
msgstr ""
|
1793 |
-
|
1794 |
-
msgid "View Query > Pagination: Turn pagination on or off."
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
msgid "View Query > View/Edit HTML : fine tune the HTML for your query."
|
1798 |
-
msgstr ""
|
1799 |
-
|
1800 |
-
msgid "View Layout: Choose your layout."
|
1801 |
-
msgstr ""
|
1802 |
-
|
1803 |
-
msgid "View Layout > View/Edit HTML: use addition CSS and HTML to control how your View is displayed."
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
msgid "This View was not saved correctly. You may need to increase the number of post variables allowed in PHP. <a href=\"%s\">How to increase max_post_vars setting</a>."
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
msgid "Views sync"
|
1810 |
-
msgstr ""
|
1811 |
-
|
1812 |
-
msgid "Duplicate view from original"
|
1813 |
-
msgstr ""
|
1814 |
-
|
1815 |
-
msgid "Duplicate view to translations"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
msgid "Before you get started, we recommend that you read the %sintroduction to customizing WordPress output with Views%s."
|
1819 |
-
msgstr ""
|
1820 |
-
|
1821 |
-
msgid "Show the following hidden custom fields in the Views GUI"
|
1822 |
-
msgstr ""
|
1823 |
-
|
1824 |
-
msgid "The following private custom fields are showing in the Views GUI: %s"
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
msgid "Fully customize the View HTML output"
|
1828 |
-
msgstr ""
|
1829 |
-
|
1830 |
-
msgid "* This View has changed. You need to save for these changes to take effect."
|
1831 |
-
msgstr ""
|
1832 |
-
|
1833 |
-
msgid "* Requires WordPress 3.2 or greater for best results."
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
msgid "Are you sure you want to change the filter?\\n\\nIt appears that you made modifications to the filter."
|
1837 |
-
msgstr ""
|
1838 |
-
|
1839 |
-
msgid "Save View"
|
1840 |
-
msgstr ""
|
1841 |
-
|
1842 |
-
msgid "Learn about Normal and Archive Views »"
|
1843 |
-
msgstr ""
|
1844 |
-
|
1845 |
-
msgid "<strong>Normal View:</strong> This View queries content from the database (good for inserting Views into content or widgets)"
|
1846 |
-
msgstr ""
|
1847 |
-
|
1848 |
-
msgid "<strong>Archive View:</strong> This View displays results for an existing WordPress query (good for archive pages, taxonomy listing, search, etc.)"
|
1849 |
-
msgstr ""
|
1850 |
-
|
1851 |
-
msgid "Querying the database"
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
msgid "Pagination settings"
|
1855 |
-
msgstr ""
|
1856 |
-
|
1857 |
-
msgid "Everything about Views pagination »"
|
1858 |
-
msgstr ""
|
1859 |
-
|
1860 |
-
msgid "1. Enter title"
|
1861 |
-
msgstr ""
|
1862 |
-
|
1863 |
-
msgid "2. Choose what content to load"
|
1864 |
-
msgstr ""
|
1865 |
-
|
1866 |
-
msgid "3. Edit the layout"
|
1867 |
-
msgstr ""
|
1868 |
-
|
1869 |
-
msgid "4. Save this View"
|
1870 |
-
msgstr ""
|
1871 |
-
|
1872 |
-
msgid "Views Settings"
|
1873 |
-
msgstr ""
|
1874 |
-
|
1875 |
-
msgid "Need Help?"
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
msgid "You can customize the output for the blog, archives, taxonomy, single pages and anything else that WordPress produces."
|
1879 |
-
msgstr ""
|
1880 |
-
|
1881 |
-
msgid "No private custom fields are showing in the Views GUI."
|
1882 |
-
msgstr ""
|
1883 |
-
|
1884 |
-
msgid "The recommended way to install Views on new sites and upgrade Views on this site is by using our Installer plugin."
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
msgid "Download Installer"
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
msgid "Instructions"
|
1891 |
-
msgstr ""
|
1892 |
-
|
1893 |
-
msgid "%sViews%s load content from the database and display it."
|
1894 |
-
msgstr ""
|
1895 |
-
|
1896 |
-
msgid "Views help"
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
msgid "%sView Templates%s style single pages."
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
msgid "View Template help"
|
1903 |
-
msgstr ""
|
1904 |
-
|
1905 |
-
msgid "%sUser Guides%s - everything you need to know about using Views"
|
1906 |
-
msgstr ""
|
1907 |
-
|
1908 |
-
msgid "%sExamples%s - learn from examples and see what you can build with Views"
|
1909 |
-
msgstr ""
|
1910 |
-
|
1911 |
-
msgid "%sDiscover WP%s - learn Views by experimenting with fully-functional learning sites"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
msgid "%sSupport forum%s - get help"
|
1915 |
-
msgstr ""
|
1916 |
-
|
1917 |
-
msgid "Documentation and Support"
|
1918 |
-
msgstr ""
|
1919 |
-
|
1920 |
-
msgid "Views subscription"
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
msgid "wp-types.com subscription email"
|
1924 |
-
msgstr ""
|
1925 |
-
|
1926 |
-
msgid "wp-types.com subscription key"
|
1927 |
-
msgstr ""
|
1928 |
-
|
1929 |
-
msgid "Save subscription details"
|
1930 |
-
msgstr ""
|
1931 |
-
|
1932 |
-
msgid "Saving. Please wait..."
|
1933 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -14,7 +14,9 @@ class OnTheGoSystemsStyles_Class{
|
|
14 |
// load wp-admin
|
15 |
add_action( 'admin_enqueue_scripts', array(&$this, 'register_and_enqueue_styles') );
|
16 |
// load front-end
|
17 |
-
|
|
|
|
|
18 |
}
|
19 |
|
20 |
public function register_and_enqueue_styles()
|
14 |
// load wp-admin
|
15 |
add_action( 'admin_enqueue_scripts', array(&$this, 'register_and_enqueue_styles') );
|
16 |
// load front-end
|
17 |
+
if (!is_admin()) {
|
18 |
+
add_action( 'admin_bar_init', array(&$this, 'register_and_enqueue_styles') );
|
19 |
+
}
|
20 |
}
|
21 |
|
22 |
public function register_and_enqueue_styles()
|
@@ -3,71 +3,84 @@
|
|
3 |
**
|
4 |
*/
|
5 |
/* ADMIN MENU ICONS */
|
6 |
-
li#toplevel_page_dd_layouts div.wp-menu-image:before {
|
7 |
font-family: "onthegosystems-icons"!important;
|
8 |
-
content:
|
9 |
font-size: 23px!important;
|
10 |
width: 30px;
|
|
|
11 |
padding-top: 5px; }
|
12 |
|
13 |
li#toplevel_page_views div.wp-menu-image:before {
|
14 |
font-family: "onthegosystems-icons"!important;
|
15 |
-
content:
|
16 |
-
font-size:
|
17 |
width: 30px;
|
|
|
18 |
padding-top: 3px; }
|
19 |
|
20 |
li#toplevel_page_ModuleManager_Modules div.wp-menu-image:before {
|
21 |
font-family: "onthegosystems-icons"!important;
|
22 |
-
content:
|
23 |
-
font-size:
|
24 |
width: 30px;
|
|
|
25 |
padding-top: 3px; }
|
26 |
|
27 |
li#toplevel_page_CRED_Forms div.wp-menu-image:before {
|
28 |
font-family: "onthegosystems-icons"!important;
|
29 |
-
content:
|
30 |
-
font-size:
|
31 |
width: 30px;
|
|
|
32 |
padding-top: 3px; }
|
33 |
|
34 |
li#toplevel_page_wpcf div.wp-menu-image:before {
|
35 |
font-family: "onthegosystems-icons"!important;
|
36 |
-
content:
|
37 |
-
font-size:
|
38 |
width: 30px;
|
|
|
39 |
padding-top: 4px; }
|
40 |
|
41 |
li#toplevel_page_types_access div.wp-menu-image:before {
|
42 |
font-family: "onthegosystems-icons"!important;
|
43 |
-
content:
|
44 |
-
font-size:
|
45 |
width: 30px;
|
|
|
46 |
padding-top: 3px; }
|
47 |
|
48 |
li#toplevel_page_CRED_Commerce div.wp-menu-image:before {
|
49 |
font-family: "onthegosystems-icons"!important;
|
50 |
-
content:
|
51 |
-
font-size:
|
52 |
width: 30px;
|
|
|
53 |
padding-top: 3px; }
|
54 |
|
55 |
/* POST EDIT PAGE SHORT TAGS BUTTONS ICONS */
|
56 |
#wp-content-editor-tools [class^="icon-"] {
|
57 |
color: #888;
|
58 |
-
margin-top: -5px;
|
|
|
|
|
59 |
|
60 |
#wp-content-editor-tools .icon-views {
|
61 |
margin-top: -1px; }
|
62 |
|
63 |
-
|
|
|
64 |
/* VIEWS SPECIFIC */
|
65 |
i.icon-views.ont-icon-19 {
|
66 |
margin: 0 8px 0 0; }
|
67 |
|
|
|
|
|
|
|
68 |
/* MODULE MANAGER */
|
69 |
.module-title h4 [class^="icon-"] {
|
70 |
position: relative;
|
71 |
-
top:
|
72 |
left: 2px;
|
73 |
padding-right: 4px; }
|
3 |
**
|
4 |
*/
|
5 |
/* ADMIN MENU ICONS */
|
6 |
+
li#toplevel_page_dd_layouts div.wp-menu-image:before, li#toplevel_page_dd_layouts .dashicons-admin-generic:before {
|
7 |
font-family: "onthegosystems-icons"!important;
|
8 |
+
content: "\f117";
|
9 |
font-size: 23px!important;
|
10 |
width: 30px;
|
11 |
+
padding-left: 3px;
|
12 |
padding-top: 5px; }
|
13 |
|
14 |
li#toplevel_page_views div.wp-menu-image:before {
|
15 |
font-family: "onthegosystems-icons"!important;
|
16 |
+
content: "\f11e";
|
17 |
+
font-size: 23px!important;
|
18 |
width: 30px;
|
19 |
+
padding-left: 3px;
|
20 |
padding-top: 3px; }
|
21 |
|
22 |
li#toplevel_page_ModuleManager_Modules div.wp-menu-image:before {
|
23 |
font-family: "onthegosystems-icons"!important;
|
24 |
+
content: "\f119";
|
25 |
+
font-size: 23px!important;
|
26 |
width: 30px;
|
27 |
+
padding-left: 3px;
|
28 |
padding-top: 3px; }
|
29 |
|
30 |
li#toplevel_page_CRED_Forms div.wp-menu-image:before {
|
31 |
font-family: "onthegosystems-icons"!important;
|
32 |
+
content: "\f115";
|
33 |
+
font-size: 23px!important;
|
34 |
width: 30px;
|
35 |
+
padding-left: 3px;
|
36 |
padding-top: 3px; }
|
37 |
|
38 |
li#toplevel_page_wpcf div.wp-menu-image:before {
|
39 |
font-family: "onthegosystems-icons"!important;
|
40 |
+
content: "\f11c";
|
41 |
+
font-size: 23px!important;
|
42 |
width: 30px;
|
43 |
+
padding-left: 3px;
|
44 |
padding-top: 4px; }
|
45 |
|
46 |
li#toplevel_page_types_access div.wp-menu-image:before {
|
47 |
font-family: "onthegosystems-icons"!important;
|
48 |
+
content: "\f111";
|
49 |
+
font-size: 23px!important;
|
50 |
width: 30px;
|
51 |
+
padding-left: 3px;
|
52 |
padding-top: 3px; }
|
53 |
|
54 |
li#toplevel_page_CRED_Commerce div.wp-menu-image:before {
|
55 |
font-family: "onthegosystems-icons"!important;
|
56 |
+
content: "\f115";
|
57 |
+
font-size: 23px!important;
|
58 |
width: 30px;
|
59 |
+
padding-left: 3px;
|
60 |
padding-top: 3px; }
|
61 |
|
62 |
/* POST EDIT PAGE SHORT TAGS BUTTONS ICONS */
|
63 |
#wp-content-editor-tools [class^="icon-"] {
|
64 |
color: #888;
|
65 |
+
margin-top: -5px;
|
66 |
+
padding-right:3px;
|
67 |
+
}
|
68 |
|
69 |
#wp-content-editor-tools .icon-views {
|
70 |
margin-top: -1px; }
|
71 |
|
72 |
+
/* CRED SPECIFIC */
|
73 |
+
.code-editor-toolbar-button-cred-icon .icon-cred{position: relative!important;bottom:3px;}
|
74 |
/* VIEWS SPECIFIC */
|
75 |
i.icon-views.ont-icon-19 {
|
76 |
margin: 0 8px 0 0; }
|
77 |
|
78 |
+
/* VIEWS VIEWS EDITOR PAGE*/
|
79 |
+
.wpv-setting .code-editor-toolbar button > i.icon-views.ont-icon-36{margin-top: -7px;}
|
80 |
+
|
81 |
/* MODULE MANAGER */
|
82 |
.module-title h4 [class^="icon-"] {
|
83 |
position: relative;
|
84 |
+
top: 0px;
|
85 |
left: 2px;
|
86 |
padding-right: 4px; }
|
@@ -7,6 +7,9 @@ This file is a collection of generic colors used in our styles
|
|
7 |
.ont-color-orange {
|
8 |
color: #f05a29; }
|
9 |
|
|
|
|
|
|
|
10 |
.ont-color-white {
|
11 |
color: white; }
|
12 |
|
7 |
.ont-color-orange {
|
8 |
color: #f05a29; }
|
9 |
|
10 |
+
.ont-color-gray {
|
11 |
+
color: #888; }
|
12 |
+
|
13 |
.ont-color-white {
|
14 |
color: white; }
|
15 |
|
@@ -34,7 +34,7 @@ if( !function_exists('on_the_go_systems_branding_init') )
|
|
34 |
}
|
35 |
}
|
36 |
// make sure we load styles after font awesome
|
37 |
-
add_action( 'init', 'on_the_go_systems_branding_init',
|
38 |
}
|
39 |
|
40 |
|
34 |
}
|
35 |
}
|
36 |
// make sure we load styles after font awesome
|
37 |
+
add_action( 'init', 'on_the_go_systems_branding_init', 110 );
|
38 |
}
|
39 |
|
40 |
|
@@ -1,61 +1,73 @@
|
|
1 |
{
|
2 |
"checksum": {
|
3 |
-
"previous": "
|
4 |
-
"current": "
|
5 |
},
|
6 |
"fonts": [
|
7 |
-
"fonts/onthegosystems-
|
8 |
-
"fonts/onthegosystems-
|
9 |
-
"fonts/onthegosystems-
|
10 |
-
"fonts/onthegosystems-
|
11 |
],
|
12 |
"glyphs": {
|
13 |
"access": {
|
14 |
-
"codepoint":
|
15 |
"source": "vectors/access.svg"
|
16 |
},
|
17 |
"access-logo": {
|
18 |
-
"codepoint":
|
19 |
"source": "vectors/access-logo.svg"
|
20 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
"cred": {
|
22 |
-
"codepoint":
|
23 |
"source": "vectors/cred.svg"
|
24 |
},
|
25 |
"cred-logo": {
|
26 |
-
"codepoint":
|
27 |
"source": "vectors/cred-logo.svg"
|
28 |
},
|
29 |
"layouts": {
|
30 |
-
"codepoint":
|
31 |
"source": "vectors/layouts.svg"
|
32 |
},
|
33 |
"layouts-logo": {
|
34 |
-
"codepoint":
|
35 |
"source": "vectors/layouts-logo.svg"
|
36 |
},
|
37 |
"module": {
|
38 |
-
"codepoint":
|
39 |
"source": "vectors/module.svg"
|
40 |
},
|
41 |
"module-logo": {
|
42 |
-
"codepoint":
|
43 |
"source": "vectors/module-logo.svg"
|
44 |
},
|
|
|
|
|
|
|
|
|
45 |
"types": {
|
46 |
-
"codepoint":
|
47 |
"source": "vectors/types.svg"
|
48 |
},
|
49 |
"types-logo": {
|
50 |
-
"codepoint":
|
51 |
"source": "vectors/types-logo.svg"
|
52 |
},
|
53 |
"views": {
|
54 |
-
"codepoint":
|
55 |
"source": "vectors/views.svg"
|
56 |
},
|
57 |
"views-logo": {
|
58 |
-
"codepoint":
|
59 |
"source": "vectors/views-logo.svg"
|
60 |
}
|
61 |
},
|
@@ -63,10 +75,10 @@
|
|
63 |
"autowidth": false,
|
64 |
"config": "fontcustom.yml",
|
65 |
"css_selector": ".icon-{{glyph}}",
|
66 |
-
"debug":
|
67 |
"file_hash": false,
|
68 |
"font_name": "onthegosystems-icons",
|
69 |
-
"force":
|
70 |
"input": {
|
71 |
"templates": "vectors",
|
72 |
"vectors": "vectors"
|
1 |
{
|
2 |
"checksum": {
|
3 |
+
"previous": "8d9a6c3bf95bd4630d40a722f192ec47a6dc6367d95e40bb3ee60174fffdfe63",
|
4 |
+
"current": "8d9a6c3bf95bd4630d40a722f192ec47a6dc6367d95e40bb3ee60174fffdfe63"
|
5 |
},
|
6 |
"fonts": [
|
7 |
+
"fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf",
|
8 |
+
"fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg",
|
9 |
+
"fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff",
|
10 |
+
"fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot"
|
11 |
],
|
12 |
"glyphs": {
|
13 |
"access": {
|
14 |
+
"codepoint": 61712,
|
15 |
"source": "vectors/access.svg"
|
16 |
},
|
17 |
"access-logo": {
|
18 |
+
"codepoint": 61713,
|
19 |
"source": "vectors/access-logo.svg"
|
20 |
},
|
21 |
+
"bootstrap": {
|
22 |
+
"codepoint": 61714,
|
23 |
+
"source": "vectors/bootstrap.svg"
|
24 |
+
},
|
25 |
+
"bootstrap-logo": {
|
26 |
+
"codepoint": 61715,
|
27 |
+
"source": "vectors/bootstrap-logo.svg"
|
28 |
+
},
|
29 |
"cred": {
|
30 |
+
"codepoint": 61716,
|
31 |
"source": "vectors/cred.svg"
|
32 |
},
|
33 |
"cred-logo": {
|
34 |
+
"codepoint": 61717,
|
35 |
"source": "vectors/cred-logo.svg"
|
36 |
},
|
37 |
"layouts": {
|
38 |
+
"codepoint": 61718,
|
39 |
"source": "vectors/layouts.svg"
|
40 |
},
|
41 |
"layouts-logo": {
|
42 |
+
"codepoint": 61719,
|
43 |
"source": "vectors/layouts-logo.svg"
|
44 |
},
|
45 |
"module": {
|
46 |
+
"codepoint": 61720,
|
47 |
"source": "vectors/module.svg"
|
48 |
},
|
49 |
"module-logo": {
|
50 |
+
"codepoint": 61721,
|
51 |
"source": "vectors/module-logo.svg"
|
52 |
},
|
53 |
+
"toolset-logo": {
|
54 |
+
"codepoint": 61722,
|
55 |
+
"source": "vectors/toolset-logo.svg"
|
56 |
+
},
|
57 |
"types": {
|
58 |
+
"codepoint": 61723,
|
59 |
"source": "vectors/types.svg"
|
60 |
},
|
61 |
"types-logo": {
|
62 |
+
"codepoint": 61724,
|
63 |
"source": "vectors/types-logo.svg"
|
64 |
},
|
65 |
"views": {
|
66 |
+
"codepoint": 61725,
|
67 |
"source": "vectors/views.svg"
|
68 |
},
|
69 |
"views-logo": {
|
70 |
+
"codepoint": 61726,
|
71 |
"source": "vectors/views-logo.svg"
|
72 |
}
|
73 |
},
|
75 |
"autowidth": false,
|
76 |
"config": "fontcustom.yml",
|
77 |
"css_selector": ".icon-{{glyph}}",
|
78 |
+
"debug": true,
|
79 |
"file_hash": false,
|
80 |
"font_name": "onthegosystems-icons",
|
81 |
+
"force": false,
|
82 |
"input": {
|
83 |
"templates": "vectors",
|
84 |
"vectors": "vectors"
|
@@ -1,30 +1,28 @@
|
|
1 |
-
/*
|
2 |
-
** NEVER EDIT onthegosystems-icons.css and _onthegosystems-icons.css
|
3 |
-
** all these files are dynamically generated by fontcustom
|
4 |
-
** Icon Font: onthegosystems-icons
|
5 |
-
*/
|
6 |
@font-face {
|
7 |
font-family: "onthegosystems-icons";
|
8 |
-
src: font-url("../fonts/onthegosystems-
|
9 |
-
src: font-url("../fonts/onthegosystems-
|
10 |
font-weight: normal;
|
11 |
font-style: normal; }
|
12 |
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
13 |
@font-face {
|
14 |
font-family: "onthegosystems-icons";
|
15 |
-
src: font-url("../fonts/onthegosystems-
|
16 |
[data-icon]:before {
|
17 |
content: attr(data-icon); }
|
18 |
|
19 |
[data-icon]:before,
|
20 |
.icon-access:before,
|
21 |
.icon-access-logo:before,
|
|
|
|
|
22 |
.icon-cred:before,
|
23 |
.icon-cred-logo:before,
|
24 |
.icon-layouts:before,
|
25 |
.icon-layouts-logo:before,
|
26 |
.icon-module:before,
|
27 |
.icon-module-logo:before,
|
|
|
28 |
.icon-types:before,
|
29 |
.icon-types-logo:before,
|
30 |
.icon-views:before,
|
@@ -43,37 +41,46 @@
|
|
43 |
font-smoothing: antialiased; }
|
44 |
|
45 |
.icon-access:before {
|
46 |
-
content: "\
|
47 |
|
48 |
.icon-access-logo:before {
|
49 |
-
content: "\
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
.icon-cred:before {
|
52 |
-
content: "\
|
53 |
|
54 |
.icon-cred-logo:before {
|
55 |
-
content: "\
|
56 |
|
57 |
.icon-layouts:before {
|
58 |
-
content: "\
|
59 |
|
60 |
.icon-layouts-logo:before {
|
61 |
-
content: "\
|
62 |
|
63 |
.icon-module:before {
|
64 |
-
content: "\
|
65 |
|
66 |
.icon-module-logo:before {
|
67 |
-
content: "\
|
|
|
|
|
|
|
68 |
|
69 |
.icon-types:before {
|
70 |
-
content: "\
|
71 |
|
72 |
.icon-types-logo:before {
|
73 |
-
content: "\
|
74 |
|
75 |
.icon-views:before {
|
76 |
-
content: "\
|
77 |
|
78 |
.icon-views-logo:before {
|
79 |
-
content: "\
|
|
|
|
|
|
|
|
|
|
|
1 |
@font-face {
|
2 |
font-family: "onthegosystems-icons";
|
3 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot");
|
4 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot?#iefix") format("embedded-opentype"), font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff") format("woff"), font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf") format("truetype"), font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
5 |
font-weight: normal;
|
6 |
font-style: normal; }
|
7 |
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
8 |
@font-face {
|
9 |
font-family: "onthegosystems-icons";
|
10 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg"); } }
|
11 |
[data-icon]:before {
|
12 |
content: attr(data-icon); }
|
13 |
|
14 |
[data-icon]:before,
|
15 |
.icon-access:before,
|
16 |
.icon-access-logo:before,
|
17 |
+
.icon-bootstrap:before,
|
18 |
+
.icon-bootstrap-logo:before,
|
19 |
.icon-cred:before,
|
20 |
.icon-cred-logo:before,
|
21 |
.icon-layouts:before,
|
22 |
.icon-layouts-logo:before,
|
23 |
.icon-module:before,
|
24 |
.icon-module-logo:before,
|
25 |
+
.icon-toolset-logo:before,
|
26 |
.icon-types:before,
|
27 |
.icon-types-logo:before,
|
28 |
.icon-views:before,
|
41 |
font-smoothing: antialiased; }
|
42 |
|
43 |
.icon-access:before {
|
44 |
+
content: "\f110"; }
|
45 |
|
46 |
.icon-access-logo:before {
|
47 |
+
content: "\f111"; }
|
48 |
+
|
49 |
+
.icon-bootstrap:before {
|
50 |
+
content: "\f112"; }
|
51 |
+
|
52 |
+
.icon-bootstrap-logo:before {
|
53 |
+
content: "\f113"; }
|
54 |
|
55 |
.icon-cred:before {
|
56 |
+
content: "\f114"; }
|
57 |
|
58 |
.icon-cred-logo:before {
|
59 |
+
content: "\f115"; }
|
60 |
|
61 |
.icon-layouts:before {
|
62 |
+
content: "\f116"; }
|
63 |
|
64 |
.icon-layouts-logo:before {
|
65 |
+
content: "\f117"; }
|
66 |
|
67 |
.icon-module:before {
|
68 |
+
content: "\f118"; }
|
69 |
|
70 |
.icon-module-logo:before {
|
71 |
+
content: "\f119"; }
|
72 |
+
|
73 |
+
.icon-toolset-logo:before {
|
74 |
+
content: "\f11a"; }
|
75 |
|
76 |
.icon-types:before {
|
77 |
+
content: "\f11b"; }
|
78 |
|
79 |
.icon-types-logo:before {
|
80 |
+
content: "\f11c"; }
|
81 |
|
82 |
.icon-views:before {
|
83 |
+
content: "\f11d"; }
|
84 |
|
85 |
.icon-views-logo:before {
|
86 |
+
content: "\f11e"; }
|
@@ -1,17 +1,14 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
** Icon Font: onthegosystems-icons
|
5 |
-
*/
|
6 |
-
|
7 |
|
8 |
@font-face {
|
9 |
font-family: "onthegosystems-icons";
|
10 |
-
src: font-url("../fonts/onthegosystems-
|
11 |
-
src: font-url("../fonts/onthegosystems-
|
12 |
-
font-url("../fonts/onthegosystems-
|
13 |
-
font-url("../fonts/onthegosystems-
|
14 |
-
font-url("../fonts/onthegosystems-
|
15 |
font-weight: normal;
|
16 |
font-style: normal;
|
17 |
}
|
@@ -19,7 +16,7 @@
|
|
19 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
20 |
@font-face {
|
21 |
font-family: "onthegosystems-icons";
|
22 |
-
src: font-url("../fonts/onthegosystems-
|
23 |
}
|
24 |
}
|
25 |
|
@@ -28,12 +25,15 @@
|
|
28 |
[data-icon]:before,
|
29 |
.icon-access:before,
|
30 |
.icon-access-logo:before,
|
|
|
|
|
31 |
.icon-cred:before,
|
32 |
.icon-cred-logo:before,
|
33 |
.icon-layouts:before,
|
34 |
.icon-layouts-logo:before,
|
35 |
.icon-module:before,
|
36 |
.icon-module-logo:before,
|
|
|
37 |
.icon-types:before,
|
38 |
.icon-types-logo:before,
|
39 |
.icon-views:before,
|
@@ -52,15 +52,18 @@
|
|
52 |
font-smoothing: antialiased;
|
53 |
}
|
54 |
|
55 |
-
.icon-access:before { content: "\
|
56 |
-
.icon-access-logo:before { content: "\
|
57 |
-
.icon-
|
58 |
-
.icon-
|
59 |
-
.icon-
|
60 |
-
.icon-
|
61 |
-
.icon-
|
62 |
-
.icon-
|
63 |
-
.icon-
|
64 |
-
.icon-
|
65 |
-
.icon-
|
66 |
-
.icon-
|
|
|
|
|
|
1 |
+
//
|
2 |
+
// Icon Font: onthegosystems-icons
|
3 |
+
//
|
|
|
|
|
|
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot");
|
8 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot?#iefix") format("embedded-opentype"),
|
9 |
+
font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff") format("woff"),
|
10 |
+
font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf") format("truetype"),
|
11 |
+
font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
+
src: font-url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
20 |
}
|
21 |
}
|
22 |
|
25 |
[data-icon]:before,
|
26 |
.icon-access:before,
|
27 |
.icon-access-logo:before,
|
28 |
+
.icon-bootstrap:before,
|
29 |
+
.icon-bootstrap-logo:before,
|
30 |
.icon-cred:before,
|
31 |
.icon-cred-logo:before,
|
32 |
.icon-layouts:before,
|
33 |
.icon-layouts-logo:before,
|
34 |
.icon-module:before,
|
35 |
.icon-module-logo:before,
|
36 |
+
.icon-toolset-logo:before,
|
37 |
.icon-types:before,
|
38 |
.icon-types-logo:before,
|
39 |
.icon-views:before,
|
52 |
font-smoothing: antialiased;
|
53 |
}
|
54 |
|
55 |
+
.icon-access:before { content: "\f110"; }
|
56 |
+
.icon-access-logo:before { content: "\f111"; }
|
57 |
+
.icon-bootstrap:before { content: "\f112"; }
|
58 |
+
.icon-bootstrap-logo:before { content: "\f113"; }
|
59 |
+
.icon-cred:before { content: "\f114"; }
|
60 |
+
.icon-cred-logo:before { content: "\f115"; }
|
61 |
+
.icon-layouts:before { content: "\f116"; }
|
62 |
+
.icon-layouts-logo:before { content: "\f117"; }
|
63 |
+
.icon-module:before { content: "\f118"; }
|
64 |
+
.icon-module-logo:before { content: "\f119"; }
|
65 |
+
.icon-toolset-logo:before { content: "\f11a"; }
|
66 |
+
.icon-types:before { content: "\f11b"; }
|
67 |
+
.icon-types-logo:before { content: "\f11c"; }
|
68 |
+
.icon-views:before { content: "\f11d"; }
|
69 |
+
.icon-views-logo:before { content: "\f11e"; }
|
@@ -4,11 +4,11 @@
|
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
-
src: url("../fonts/onthegosystems-
|
8 |
-
src: url("../fonts/onthegosystems-
|
9 |
-
url("../fonts/onthegosystems-
|
10 |
-
url("../fonts/onthegosystems-
|
11 |
-
url("../fonts/onthegosystems-
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
@@ -16,7 +16,7 @@
|
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
-
src: url("../fonts/onthegosystems-
|
20 |
}
|
21 |
}
|
22 |
|
@@ -25,12 +25,15 @@
|
|
25 |
[data-icon]:before,
|
26 |
.icon-access:before,
|
27 |
.icon-access-logo:before,
|
|
|
|
|
28 |
.icon-cred:before,
|
29 |
.icon-cred-logo:before,
|
30 |
.icon-layouts:before,
|
31 |
.icon-layouts-logo:before,
|
32 |
.icon-module:before,
|
33 |
.icon-module-logo:before,
|
|
|
34 |
.icon-types:before,
|
35 |
.icon-types-logo:before,
|
36 |
.icon-views:before,
|
@@ -49,15 +52,18 @@
|
|
49 |
font-smoothing: antialiased;
|
50 |
}
|
51 |
|
52 |
-
.icon-access:before { content: "\
|
53 |
-
.icon-access-logo:before { content: "\
|
54 |
-
.icon-
|
55 |
-
.icon-
|
56 |
-
.icon-
|
57 |
-
.icon-
|
58 |
-
.icon-
|
59 |
-
.icon-
|
60 |
-
.icon-
|
61 |
-
.icon-
|
62 |
-
.icon-
|
63 |
-
.icon-
|
|
|
|
|
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
+
src: url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot");
|
8 |
+
src: url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot?#iefix") format("embedded-opentype"),
|
9 |
+
url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff") format("woff"),
|
10 |
+
url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf") format("truetype"),
|
11 |
+
url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
+
src: url("../fonts/onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
20 |
}
|
21 |
}
|
22 |
|
25 |
[data-icon]:before,
|
26 |
.icon-access:before,
|
27 |
.icon-access-logo:before,
|
28 |
+
.icon-bootstrap:before,
|
29 |
+
.icon-bootstrap-logo:before,
|
30 |
.icon-cred:before,
|
31 |
.icon-cred-logo:before,
|
32 |
.icon-layouts:before,
|
33 |
.icon-layouts-logo:before,
|
34 |
.icon-module:before,
|
35 |
.icon-module-logo:before,
|
36 |
+
.icon-toolset-logo:before,
|
37 |
.icon-types:before,
|
38 |
.icon-types-logo:before,
|
39 |
.icon-views:before,
|
52 |
font-smoothing: antialiased;
|
53 |
}
|
54 |
|
55 |
+
.icon-access:before { content: "\f110"; }
|
56 |
+
.icon-access-logo:before { content: "\f111"; }
|
57 |
+
.icon-bootstrap:before { content: "\f112"; }
|
58 |
+
.icon-bootstrap-logo:before { content: "\f113"; }
|
59 |
+
.icon-cred:before { content: "\f114"; }
|
60 |
+
.icon-cred-logo:before { content: "\f115"; }
|
61 |
+
.icon-layouts:before { content: "\f116"; }
|
62 |
+
.icon-layouts-logo:before { content: "\f117"; }
|
63 |
+
.icon-module:before { content: "\f118"; }
|
64 |
+
.icon-module-logo:before { content: "\f119"; }
|
65 |
+
.icon-toolset-logo:before { content: "\f11a"; }
|
66 |
+
.icon-types:before { content: "\f11b"; }
|
67 |
+
.icon-types-logo:before { content: "\f11c"; }
|
68 |
+
.icon-views:before { content: "\f11d"; }
|
69 |
+
.icon-views-logo:before { content: "\f11e"; }
|
@@ -141,11 +141,11 @@
|
|
141 |
|
142 |
@font-face {
|
143 |
font-family: "onthegosystems-icons";
|
144 |
-
src: url("./onthegosystems-
|
145 |
-
src: url("./onthegosystems-
|
146 |
-
url("./onthegosystems-
|
147 |
-
url("./onthegosystems-
|
148 |
-
url("./onthegosystems-
|
149 |
font-weight: normal;
|
150 |
font-style: normal;
|
151 |
}
|
@@ -153,7 +153,7 @@
|
|
153 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
154 |
@font-face {
|
155 |
font-family: "onthegosystems-icons";
|
156 |
-
src: url("./onthegosystems-
|
157 |
}
|
158 |
}
|
159 |
|
@@ -162,12 +162,15 @@
|
|
162 |
[data-icon]:before,
|
163 |
.icon-access:before,
|
164 |
.icon-access-logo:before,
|
|
|
|
|
165 |
.icon-cred:before,
|
166 |
.icon-cred-logo:before,
|
167 |
.icon-layouts:before,
|
168 |
.icon-layouts-logo:before,
|
169 |
.icon-module:before,
|
170 |
.icon-module-logo:before,
|
|
|
171 |
.icon-types:before,
|
172 |
.icon-types-logo:before,
|
173 |
.icon-views:before,
|
@@ -186,18 +189,21 @@
|
|
186 |
font-smoothing: antialiased;
|
187 |
}
|
188 |
|
189 |
-
.icon-access:before { content: "\
|
190 |
-
.icon-access-logo:before { content: "\
|
191 |
-
.icon-
|
192 |
-
.icon-
|
193 |
-
.icon-
|
194 |
-
.icon-
|
195 |
-
.icon-
|
196 |
-
.icon-
|
197 |
-
.icon-
|
198 |
-
.icon-
|
199 |
-
.icon-
|
200 |
-
.icon-
|
|
|
|
|
|
|
201 |
</style>
|
202 |
|
203 |
<!--[if lte IE 8]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
@@ -213,7 +219,7 @@
|
|
213 |
<body class="characters-off">
|
214 |
<div id="page" class="container">
|
215 |
<header>
|
216 |
-
<h1>onthegosystems-icons contains
|
217 |
<a onclick="toggleCharacters(); return false;" href="#">Toggle Preview Characters</a>
|
218 |
</header>
|
219 |
|
@@ -227,7 +233,7 @@
|
|
227 |
</div>
|
228 |
<div class="usage">
|
229 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-access" />
|
230 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
231 |
</div>
|
232 |
</div>
|
233 |
|
@@ -240,7 +246,33 @@
|
|
240 |
</div>
|
241 |
<div class="usage">
|
242 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-access-logo" />
|
243 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
</div>
|
245 |
</div>
|
246 |
|
@@ -253,7 +285,7 @@
|
|
253 |
</div>
|
254 |
<div class="usage">
|
255 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-cred" />
|
256 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
257 |
</div>
|
258 |
</div>
|
259 |
|
@@ -266,7 +298,7 @@
|
|
266 |
</div>
|
267 |
<div class="usage">
|
268 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-cred-logo" />
|
269 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
270 |
</div>
|
271 |
</div>
|
272 |
|
@@ -279,7 +311,7 @@
|
|
279 |
</div>
|
280 |
<div class="usage">
|
281 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-layouts" />
|
282 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
283 |
</div>
|
284 |
</div>
|
285 |
|
@@ -292,7 +324,7 @@
|
|
292 |
</div>
|
293 |
<div class="usage">
|
294 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-layouts-logo" />
|
295 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
296 |
</div>
|
297 |
</div>
|
298 |
|
@@ -305,7 +337,7 @@
|
|
305 |
</div>
|
306 |
<div class="usage">
|
307 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-module" />
|
308 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
309 |
</div>
|
310 |
</div>
|
311 |
|
@@ -318,7 +350,20 @@
|
|
318 |
</div>
|
319 |
<div class="usage">
|
320 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-module-logo" />
|
321 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
</div>
|
323 |
</div>
|
324 |
|
@@ -331,7 +376,7 @@
|
|
331 |
</div>
|
332 |
<div class="usage">
|
333 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-types" />
|
334 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
335 |
</div>
|
336 |
</div>
|
337 |
|
@@ -344,7 +389,7 @@
|
|
344 |
</div>
|
345 |
<div class="usage">
|
346 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-types-logo" />
|
347 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
348 |
</div>
|
349 |
</div>
|
350 |
|
@@ -357,7 +402,7 @@
|
|
357 |
</div>
|
358 |
<div class="usage">
|
359 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-views" />
|
360 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
361 |
</div>
|
362 |
</div>
|
363 |
|
@@ -370,7 +415,7 @@
|
|
370 |
</div>
|
371 |
<div class="usage">
|
372 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-views-logo" />
|
373 |
-
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#
|
374 |
</div>
|
375 |
</div>
|
376 |
|
141 |
|
142 |
@font-face {
|
143 |
font-family: "onthegosystems-icons";
|
144 |
+
src: url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot");
|
145 |
+
src: url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.eot?#iefix") format("embedded-opentype"),
|
146 |
+
url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.woff") format("woff"),
|
147 |
+
url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.ttf") format("truetype"),
|
148 |
+
url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
149 |
font-weight: normal;
|
150 |
font-style: normal;
|
151 |
}
|
153 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
154 |
@font-face {
|
155 |
font-family: "onthegosystems-icons";
|
156 |
+
src: url("./onthegosystems-icons_8d9a6c3bf95bd4630d40a722f192ec47.svg#onthegosystems-icons") format("svg");
|
157 |
}
|
158 |
}
|
159 |
|
162 |
[data-icon]:before,
|
163 |
.icon-access:before,
|
164 |
.icon-access-logo:before,
|
165 |
+
.icon-bootstrap:before,
|
166 |
+
.icon-bootstrap-logo:before,
|
167 |
.icon-cred:before,
|
168 |
.icon-cred-logo:before,
|
169 |
.icon-layouts:before,
|
170 |
.icon-layouts-logo:before,
|
171 |
.icon-module:before,
|
172 |
.icon-module-logo:before,
|
173 |
+
.icon-toolset-logo:before,
|
174 |
.icon-types:before,
|
175 |
.icon-types-logo:before,
|
176 |
.icon-views:before,
|
189 |
font-smoothing: antialiased;
|
190 |
}
|
191 |
|
192 |
+
.icon-access:before { content: "\f110"; }
|
193 |
+
.icon-access-logo:before { content: "\f111"; }
|
194 |
+
.icon-bootstrap:before { content: "\f112"; }
|
195 |
+
.icon-bootstrap-logo:before { content: "\f113"; }
|
196 |
+
.icon-cred:before { content: "\f114"; }
|
197 |
+
.icon-cred-logo:before { content: "\f115"; }
|
198 |
+
.icon-layouts:before { content: "\f116"; }
|
199 |
+
.icon-layouts-logo:before { content: "\f117"; }
|
200 |
+
.icon-module:before { content: "\f118"; }
|
201 |
+
.icon-module-logo:before { content: "\f119"; }
|
202 |
+
.icon-toolset-logo:before { content: "\f11a"; }
|
203 |
+
.icon-types:before { content: "\f11b"; }
|
204 |
+
.icon-types-logo:before { content: "\f11c"; }
|
205 |
+
.icon-views:before { content: "\f11d"; }
|
206 |
+
.icon-views-logo:before { content: "\f11e"; }
|
207 |
</style>
|
208 |
|
209 |
<!--[if lte IE 8]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
219 |
<body class="characters-off">
|
220 |
<div id="page" class="container">
|
221 |
<header>
|
222 |
+
<h1>onthegosystems-icons contains 15 glyphs:</h1>
|
223 |
<a onclick="toggleCharacters(); return false;" href="#">Toggle Preview Characters</a>
|
224 |
</header>
|
225 |
|
233 |
</div>
|
234 |
<div class="usage">
|
235 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-access" />
|
236 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf110;" />
|
237 |
</div>
|
238 |
</div>
|
239 |
|
246 |
</div>
|
247 |
<div class="usage">
|
248 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-access-logo" />
|
249 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf111;" />
|
250 |
+
</div>
|
251 |
+
</div>
|
252 |
+
|
253 |
+
<div class="glyph">
|
254 |
+
<div class="preview-glyphs">
|
255 |
+
<span class="step size-12"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-bootstrap" class="icon-bootstrap"></i></span>
|
256 |
+
</div>
|
257 |
+
<div class="preview-scale">
|
258 |
+
<span class="step">12</span><span class="step">14</span><span class="step">16</span><span class="step">18</span><span class="step">21</span><span class="step">24</span><span class="step">36</span><span class="step">48</span><span class="step">60</span><span class="step">72</span>
|
259 |
+
</div>
|
260 |
+
<div class="usage">
|
261 |
+
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-bootstrap" />
|
262 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf112;" />
|
263 |
+
</div>
|
264 |
+
</div>
|
265 |
+
|
266 |
+
<div class="glyph">
|
267 |
+
<div class="preview-glyphs">
|
268 |
+
<span class="step size-12"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-bootstrap-logo" class="icon-bootstrap-logo"></i></span>
|
269 |
+
</div>
|
270 |
+
<div class="preview-scale">
|
271 |
+
<span class="step">12</span><span class="step">14</span><span class="step">16</span><span class="step">18</span><span class="step">21</span><span class="step">24</span><span class="step">36</span><span class="step">48</span><span class="step">60</span><span class="step">72</span>
|
272 |
+
</div>
|
273 |
+
<div class="usage">
|
274 |
+
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-bootstrap-logo" />
|
275 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf113;" />
|
276 |
</div>
|
277 |
</div>
|
278 |
|
285 |
</div>
|
286 |
<div class="usage">
|
287 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-cred" />
|
288 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf114;" />
|
289 |
</div>
|
290 |
</div>
|
291 |
|
298 |
</div>
|
299 |
<div class="usage">
|
300 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-cred-logo" />
|
301 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf115;" />
|
302 |
</div>
|
303 |
</div>
|
304 |
|
311 |
</div>
|
312 |
<div class="usage">
|
313 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-layouts" />
|
314 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf116;" />
|
315 |
</div>
|
316 |
</div>
|
317 |
|
324 |
</div>
|
325 |
<div class="usage">
|
326 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-layouts-logo" />
|
327 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf117;" />
|
328 |
</div>
|
329 |
</div>
|
330 |
|
337 |
</div>
|
338 |
<div class="usage">
|
339 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-module" />
|
340 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf118;" />
|
341 |
</div>
|
342 |
</div>
|
343 |
|
350 |
</div>
|
351 |
<div class="usage">
|
352 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-module-logo" />
|
353 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf119;" />
|
354 |
+
</div>
|
355 |
+
</div>
|
356 |
+
|
357 |
+
<div class="glyph">
|
358 |
+
<div class="preview-glyphs">
|
359 |
+
<span class="step size-12"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-toolset-logo" class="icon-toolset-logo"></i></span>
|
360 |
+
</div>
|
361 |
+
<div class="preview-scale">
|
362 |
+
<span class="step">12</span><span class="step">14</span><span class="step">16</span><span class="step">18</span><span class="step">21</span><span class="step">24</span><span class="step">36</span><span class="step">48</span><span class="step">60</span><span class="step">72</span>
|
363 |
+
</div>
|
364 |
+
<div class="usage">
|
365 |
+
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-toolset-logo" />
|
366 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf11a;" />
|
367 |
</div>
|
368 |
</div>
|
369 |
|
376 |
</div>
|
377 |
<div class="usage">
|
378 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-types" />
|
379 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf11b;" />
|
380 |
</div>
|
381 |
</div>
|
382 |
|
389 |
</div>
|
390 |
<div class="usage">
|
391 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-types-logo" />
|
392 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf11c;" />
|
393 |
</div>
|
394 |
</div>
|
395 |
|
402 |
</div>
|
403 |
<div class="usage">
|
404 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-views" />
|
405 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf11d;" />
|
406 |
</div>
|
407 |
</div>
|
408 |
|
415 |
</div>
|
416 |
<div class="usage">
|
417 |
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-views-logo" />
|
418 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf11e;" />
|
419 |
</div>
|
420 |
</div>
|
421 |
|
Binary file
|
@@ -1,73 +0,0 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<!--
|
4 |
-
2014-6-23: Created.
|
5 |
-
-->
|
6 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
7 |
-
<metadata>
|
8 |
-
Created by FontForge 20120731 at Mon Jun 23 11:45:13 2014
|
9 |
-
By Riccardo Strobbia
|
10 |
-
Created by Riccardo Strobbia with FontForge 2.0 (http://fontforge.sf.net)
|
11 |
-
</metadata>
|
12 |
-
<defs>
|
13 |
-
<font id="onthegosystems-icons" horiz-adv-x="512" >
|
14 |
-
<font-face
|
15 |
-
font-family="onthegosystems-icons"
|
16 |
-
font-weight="500"
|
17 |
-
font-stretch="normal"
|
18 |
-
units-per-em="512"
|
19 |
-
panose-1="2 0 6 9 0 0 0 0 0 0"
|
20 |
-
ascent="448"
|
21 |
-
descent="-64"
|
22 |
-
bbox="56.3203 -38.4004 455.68 422.4"
|
23 |
-
underline-thickness="25.6"
|
24 |
-
underline-position="-51.2"
|
25 |
-
unicode-range="U+F100-F10B"
|
26 |
-
/>
|
27 |
-
<missing-glyph />
|
28 |
-
<glyph glyph-name="uniF10A" unicode=""
|
29 |
-
d="M76.7998 193.173c0 0 160.773 218.726 358.4 0c0 0 -160.742 -223.995 -358.4 0zM255.975 115.922c42.0605 0 76.0928 34.0322 76.0928 76.0479c0 42.0498 -34.0322 76.0977 -76.0928 76.0977c-41.9893 0 -76.042 -34.0479 -76.042 -76.0977
|
30 |
-
c0 -42.0156 34.0527 -76.0479 76.042 -76.0479zM255.975 230.492c21.2939 0 38.5947 -17.2344 38.5996 -38.5283c0 -21.2529 -17.3057 -38.5586 -38.5996 -38.5586c-21.2637 0 -38.5078 17.3057 -38.5078 38.5586c0 21.2998 17.249 38.5283 38.5078 38.5283z" />
|
31 |
-
<glyph glyph-name="uniF107" unicode=""
|
32 |
-
d="M394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM240.64 30.2998v92.5186l-92.1592 47.5498v-89.9893zM151.132 206.71l105.073 -54.1797l102.195 53.2217v0.195312l-104.407 52.4951z
|
33 |
-
M363.52 80.3789v89.9893l-92.1592 -47.5498v-92.5186z" />
|
34 |
-
<glyph glyph-name="uniF101" unicode=""
|
35 |
-
d="M256 251.101c13.9521 0 25.5996 -11.3721 25.5996 -25.334v-49.127h-51.1992v49.127c0 13.9619 11.6221 25.334 25.5996 25.334zM394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM332.8 39.0449
|
36 |
-
v123.674c0 8.64258 -7.21387 13.9209 -15.7334 13.9209h-14.9863v49.127c0 25.124 -20.9404 45.5527 -46.0801 45.5527s-46.0801 -20.4287 -46.0801 -45.5527v-49.127h-14.9707c-8.55078 0 -15.749 -5.27832 -15.749 -13.9209v-123.674
|
37 |
-
c0 -8.64258 7.19824 -16.0049 15.749 -16.0049h122.117c8.51953 0 15.7334 7.3623 15.7334 16.0049z" />
|
38 |
-
<glyph glyph-name="uniF106" unicode=""
|
39 |
-
d="M230.4 12.7998l-143.36 78.6592v141.343l143.36 -74.6807v-145.321zM92.7178 289.388l159.78 81.8125l162.222 -83.0107v-0.307617l-158.72 -84.167zM424.96 91.459l-143.36 -78.6592v145.321l143.36 74.6807v-141.343z" />
|
40 |
-
<glyph glyph-name="uniF105" unicode=""
|
41 |
-
d="M394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM194.56 38.4004v138.239h-61.4395v-138.239h61.4395zM378.88 38.4004v138.239h-153.6v-138.239h153.6zM378.88 207.36v61.4395h-245.76v-61.4395
|
42 |
-
h245.76z" />
|
43 |
-
<glyph glyph-name="uniF100" unicode=""
|
44 |
-
d="M345.861 232.96c12.2979 0 22.7783 -5.31445 22.7783 -17.7871v-178.534c0 -12.4668 -10.4805 -28.959 -22.7783 -28.959h-176.282c-12.3438 0 -26.2188 16.4922 -26.2188 28.959v178.534c0 12.4727 13.875 17.7871 26.2188 17.7871h19.8613v73.2207
|
45 |
-
c0 36.2705 30.2686 65.7617 66.5596 65.7617s66.5596 -29.4912 66.5596 -65.7617v-73.2207h23.3018zM291.84 232.96v73.2207c0 20.1631 -15.6982 36.5781 -35.8398 36.5781c-20.1777 0 -35.8398 -16.415 -35.8398 -36.5781v-73.2207h71.6797z" />
|
46 |
-
<glyph glyph-name="uniF104" unicode=""
|
47 |
-
d="M76.7998 23.04v199.68h87.04v-199.68h-87.04zM209.92 23.04v199.68h225.28v-199.68h-225.28zM76.7998 268.8v87.04h358.4v-87.04h-358.4z" />
|
48 |
-
<glyph glyph-name="uniF109" unicode=""
|
49 |
-
d="M394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM136.53 207.36c-5.4375 0.240234 -3.41016 -5.12012 -3.41016 -5.12012v-5.12012v-117.888l41.083 84.6484
|
50 |
-
c3.20996 6.21582 3.16895 9.96875 4.91016 10.957c1.77148 1.03418 6.33301 1.80176 13.6953 1.80176h124.632v22.0469c0 5.25293 -7.67578 8.67383 -12.7744 8.67383h-44.7539c-6.35449 0 -10.2656 0.117188 -11.7666 0.824219
|
51 |
-
c-1.46875 0.762695 -2.68262 11.9648 -3.64551 15.8662l-1.22852 4.9668c-0.854492 3.30273 -1.84277 5.94434 -2.98438 6.73828c-1.12695 0.762695 -3.59961 2.32422 -7.45508 2.32422h-64.666c-4.33594 0 -7.22949 -1.5 -8.73438 -2.33496
|
52 |
-
c-1.46973 -0.870117 -2.5957 -3.89062 -3.4043 -6.79883l-1.24414 -13.7275c-1.08105 -3.83984 -2.29395 -6.07227 -3.59961 -6.92676c-1.33691 -0.885742 -4.25977 -0.931641 -8.74512 -0.931641h-5.9082zM204.8 145.92h162.13s5.60156 0.481445 4.3877 -1.88965
|
53 |
-
l-44.917 -90.2705h-183.046l49.4951 92.1553z" />
|
54 |
-
<glyph glyph-name="uniF10B" unicode=""
|
55 |
-
d="M257.89 196.879c33.3311 0 60.2979 -26.9766 60.2979 -60.2979c0 -33.2803 -26.9668 -60.252 -60.2979 -60.252c-33.2705 0 -60.2578 26.9717 -60.2578 60.252c0 33.3154 26.9873 60.2979 60.2578 60.2979zM257.89 106.03c16.875 0 30.5869 13.7109 30.5869 30.5508
|
56 |
-
c0 16.8809 -13.7119 30.5303 -30.5869 30.5303c-16.8447 0 -30.5107 -13.6494 -30.5107 -30.5303c0 -16.8398 13.666 -30.5508 30.5107 -30.5508zM394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602z
|
57 |
-
M115.917 137.538c156.621 -177.489 283.991 0 283.991 0c-156.596 173.322 -283.991 0 -283.991 0z" />
|
58 |
-
<glyph glyph-name="uniF103" unicode=""
|
59 |
-
d="M394.24 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM317.44 54.958v38.2822c0 -13.0049 -22.4111 -23.5625 -61.4404 -23.5625s-61.4404 10.5625 -61.4404 23.5625v-38.2822
|
60 |
-
c0 -13 22.4111 -23.5566 61.4404 -23.5566s61.4404 10.5566 61.4404 23.5566zM317.44 122.67v38.2725c0 -13.0098 -22.4111 -23.5527 -61.4404 -23.5527s-61.4404 10.543 -61.4404 23.5527v-38.2725c0 -13 22.4111 -23.5518 61.4404 -23.5518
|
61 |
-
s61.4404 10.5518 61.4404 23.5518zM317.44 190.367v29.4395c0 13.0098 -22.4111 23.5518 -61.4404 23.5518s-61.4404 -10.542 -61.4404 -23.5518v-29.4395c0 -12.9902 22.4111 -23.5469 61.4404 -23.5469s61.4404 10.5566 61.4404 23.5469z" />
|
62 |
-
<glyph glyph-name="uniF102" unicode=""
|
63 |
-
d="M358.4 52.6182c0 -21.9805 -36.3984 -39.8184 -102.4 -39.8184s-102.4 17.8379 -102.4 39.8184v64.7324c0 -21.9805 36.3984 -39.8291 102.4 -39.8291s102.4 17.8486 102.4 39.8291v-64.7324zM358.4 167.122c0 -21.9805 -36.3984 -39.8184 -102.4 -39.8184
|
64 |
-
s-102.4 17.8379 -102.4 39.8184v64.7119c0 -22.001 36.3984 -39.8184 102.4 -39.8184s102.4 17.8174 102.4 39.8184v-64.7119zM358.4 281.595c0 -21.9648 -36.3984 -39.8232 -102.4 -39.8232s-102.4 17.8584 -102.4 39.8232v49.7871c0 22.001 36.3984 39.8184 102.4 39.8184
|
65 |
-
s102.4 -17.8174 102.4 -39.8184v-49.7871z" />
|
66 |
-
<glyph glyph-name="uniF108" unicode=""
|
67 |
-
d="M426.005 191.063c5.80566 0 8.87793 -1.0498 9.19531 -3.08789c0 -0.639648 -1.11621 -3.32812 -3.29785 -8.05371l-65.5918 -131.486h-264.93l67.0879 131.988c2.2832 4.50586 4.50488 7.4082 6.65039 8.68848c2.17578 1.27441 6.13867 1.95117 11.8789 1.95117h239.007
|
68 |
-
zM151.291 245.488c-2.5498 -1.41309 -6.16504 -6.68652 -10.8086 -15.7031l-63.6826 -124.083v176.226c0 4.61816 0.773438 7.64453 2.29883 9.07227c1.52637 1.41309 4.66992 2.18164 9.41113 2.18164h9.18457c6.59961 0 10.8809 0.644531 12.8105 1.90918
|
69 |
-
c1.94043 1.27539 3.68652 4.77246 5.25879 10.3477l1.78125 20.0557c1.17773 4.22852 2.8623 7.00391 5.04883 8.27832c2.13477 1.20898 6.41504 1.79785 12.6924 1.79785h94.4229c5.62109 0 9.2666 -0.588867 10.8799 -1.70508
|
70 |
-
c1.64355 -1.16211 3.09766 -4.14258 4.36719 -8.9707l1.78223 -6.77832c1.38672 -5.66797 3.15332 -22.2363 5.34473 -23.3525c2.16602 -1.0498 7.87988 -1.57715 17.1572 -1.57715h63.3193c7.41895 0 11.1104 -3.83984 11.1104 -11.4434v-34.0166h-172.375
|
71 |
-
c-10.7627 0 -17.4336 -0.743164 -20.0039 -2.23828z" />
|
72 |
-
</font>
|
73 |
-
</defs></svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,329 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<!--
|
4 |
+
2014-8-25: Created.
|
5 |
+
-->
|
6 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
7 |
+
<metadata>
|
8 |
+
Created by FontForge 20120731 at Mon Aug 25 11:41:10 2014
|
9 |
+
By Riccardo Strobbia
|
10 |
+
Created by Riccardo Strobbia with FontForge 2.0 (http://fontforge.sf.net)
|
11 |
+
</metadata>
|
12 |
+
<defs>
|
13 |
+
<font id="onthegosystems-icons" horiz-adv-x="512" >
|
14 |
+
<font-face
|
15 |
+
font-family="onthegosystems-icons"
|
16 |
+
font-weight="500"
|
17 |
+
font-stretch="normal"
|
18 |
+
units-per-em="512"
|
19 |
+
panose-1="2 0 6 9 0 0 0 0 0 0"
|
20 |
+
ascent="448"
|
21 |
+
descent="-64"
|
22 |
+
bbox="61.4404 -38.4004 460.8 422.4"
|
23 |
+
underline-thickness="25.6"
|
24 |
+
underline-position="-51.2"
|
25 |
+
unicode-range="U+F110-F11E"
|
26 |
+
/>
|
27 |
+
<missing-glyph />
|
28 |
+
<glyph glyph-name="uniF119" unicode=""
|
29 |
+
d="M371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM243.782 3.33398v122.164l-117.459 69.5742v-123.917zM384.007 71.1553v121.439l-116.979 -70.0088v-118.977zM384.007 219.667v0.268555l-128.846 74.3877
|
30 |
+
l-127.008 -73.3311l129.689 -76.8193z" />
|
31 |
+
<glyph glyph-name="uniF11D" unicode=""
|
32 |
+
d="M119.507 152.666c0 0 123.872 168.55 276.192 0c0 0 -123.872 -172.615 -276.192 0zM257.594 99.7119c28.7549 0 52.0576 23.3154 52.0576 52.0381c0 28.749 -23.2959 52.0576 -52.0576 52.0576c-28.7295 0 -52.0322 -23.3086 -52.0322 -52.0576
|
33 |
+
c0 -28.7227 23.3027 -52.0381 52.0322 -52.0381zM257.594 117.453c-18.9316 0 -34.2979 15.3594 -34.2979 34.2969c0 18.957 15.3662 34.3105 34.2979 34.3105c18.957 0 34.3164 -15.3535 34.3164 -34.3105c0 -18.9375 -15.3594 -34.2969 -34.3164 -34.2969z
|
34 |
+
M257.594 186.061c18.957 0 34.3164 -15.3535 34.3164 -34.3105c0 -18.9375 -15.3594 -34.2969 -34.3164 -34.2969c-18.9316 0 -34.2979 15.3594 -34.2979 34.2969c0 18.957 15.3662 34.3105 34.2979 34.3105z" />
|
35 |
+
<glyph glyph-name="uniF113" unicode=""
|
36 |
+
d="M318.489 170.215v16.1211l30.0742 -30.0859l-30.0742 -30.0742v16.1094h-120.902v-16.1094l-30.0732 30.0742l30.0732 30.0859v-16.1211h120.902zM371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008z
|
37 |
+
M388.448 76.8252v0v157.606c0 11.2256 -9.08789 20.3135 -20.3008 20.3135h-225.376c-11.2197 0 -20.3076 -9.09375 -20.3076 -20.3135v-157.606c0 -11.2256 9.08789 -20.3193 20.3076 -20.3193h97.3633c-1.27441 -7.69922 -7.61035 -28.666 -39.002 -28.666v-10.0479
|
38 |
+
h50.4316h10.7461h50.4258v10.0479c-31.3984 0 -37.7471 20.9727 -39.002 28.666h94.4004c11.2256 0 20.3135 9.09375 20.3135 20.3193z" />
|
39 |
+
<glyph glyph-name="uniF112" unicode=""
|
40 |
+
d="M368.135 254.745c11.2256 0 20.3135 -9.09375 20.3135 -20.3135v-157.606c0 -11.2256 -9.08789 -20.3193 -20.3008 -20.3193h-94.4131c1.27344 -7.69922 7.61621 -28.666 39.0078 -28.666v-10.0479h-50.4316h-10.7393h-50.4316v10.0479
|
41 |
+
c31.3984 0 37.7275 20.9727 39.001 28.666h-97.3691c-11.2197 0 -20.3076 9.09375 -20.3076 20.3193v157.606c0 11.2256 9.08789 20.3135 20.3076 20.3135h225.363zM318.489 126.176l30.0742 30.0742l-30.0742 30.0859v-16.1279h-120.902v16.1279l-30.0732 -30.0859
|
42 |
+
l30.0732 -30.0742v16.1152h120.902v-16.1152z" />
|
43 |
+
<glyph glyph-name="uniF111" unicode=""
|
44 |
+
d="M258.637 256.013c18.6494 0 33.8242 -15.1738 33.8242 -33.8242v-22.5342h-67.6484v22.5342c0 18.6504 15.1748 33.8242 33.8242 33.8242zM371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM344.313 43.6348
|
45 |
+
v138.451c0 9.70312 -7.85938 17.5752 -17.5742 17.5752h-7.21289v22.5342c0 33.5684 -27.3154 60.877 -60.8896 60.877c-33.5615 0 -60.877 -27.3086 -60.877 -60.877v-22.5342h-9.47168c-9.69629 0 -17.5615 -7.87207 -17.5615 -17.5752v-138.451
|
46 |
+
c0 -9.70215 7.85938 -17.5742 17.5615 -17.5742h138.451c9.70898 0 17.5742 7.87207 17.5742 17.5742z" />
|
47 |
+
<glyph glyph-name="uniF118" unicode=""
|
48 |
+
d="M384.007 219.667l-126.164 -75.4941l-129.689 76.8193l127.008 73.3311l128.846 -74.3877v-0.268555zM384.007 192.595v-121.439l-116.979 -67.5459v118.977zM126.323 195.072l117.459 -69.5742v-122.164l-117.459 67.8213v123.917z" />
|
49 |
+
<glyph glyph-name="uniF117" unicode=""
|
50 |
+
d="M371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM183.577 12.877v174.188h-70.3359v-174.188h70.3359zM396.8 12.877v174.188h-195.501v-174.188h195.501zM396.8 205.178v74.6494h-283.559v-74.6494h283.559z
|
51 |
+
" />
|
52 |
+
<glyph glyph-name="uniF110" unicode=""
|
53 |
+
d="M344.313 43.6348c0 -9.70215 -7.86523 -17.5742 -17.5742 -17.5742h-138.451c-9.70215 0 -17.5615 7.87207 -17.5615 17.5742v138.451c0 9.70312 7.86523 17.5752 17.5615 17.5752h138.451c9.71484 0 17.5742 -7.87207 17.5742 -17.5752v-138.451zM319.526 155.699
|
54 |
+
h-27.0654v66.4893c0 18.6504 -15.1748 33.8242 -33.8242 33.8242s-33.8242 -15.1738 -33.8242 -33.8242v-57.4717h-27.0527v57.4717c0 33.5684 27.3154 60.877 60.877 60.877c33.5742 0 60.8896 -27.3086 60.8896 -60.877v-66.4893z" />
|
55 |
+
<glyph glyph-name="uniF116" unicode=""
|
56 |
+
d="M113.241 205.178v74.6494h283.559v-74.6494h-283.559zM201.299 12.877v174.188h195.501v-174.188h-195.501zM113.241 12.877v174.188h70.3359v-174.188h-70.3359z" />
|
57 |
+
<glyph glyph-name="uniF11C" unicode=""
|
58 |
+
d="M371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM108.8 219.04v-133.626l55.9746 105.543c3.96777 7.68652 8.62109 11.667 10.8027 12.915c2.20215 1.28027 7.8916 0.927734 17.0889 0.927734h146.534v14.1182
|
59 |
+
c0 6.49609 -2.40039 11.4824 -8.73633 11.4824h-87.9355c-7.92969 0 -12.8262 -0.269531 -14.6816 0.665039c-1.85645 0.921875 -3.37988 3.07227 -4.55664 7.8916l-1.51758 6.11133c-1.09375 4.12891 -2.3418 7.29688 -3.7373 8.2627
|
60 |
+
c-1.39551 0.966797 -4.49316 2.66895 -9.29297 2.66895h-46.8281c-5.38965 0 -9.01758 -1.60645 -10.8672 -2.61719c-1.86328 -1.08887 -3.2832 -4.57031 -4.29492 -8.19922l-1.52344 -5.59961c-1.35059 -4.79395 -2.84766 -7.32812 -4.49902 -8.40918
|
61 |
+
c-1.64453 -1.10742 -5.29297 -0.774414 -10.9375 -0.774414h-7.85254c-4.05762 0 -8.29492 -1.49121 -9.60645 -2.70801c-1.31836 -1.24121 -3.5332 -4.69043 -3.5332 -8.65234zM409.715 175.731c1.8623 4.05762 2.78418 6.52148 2.79688 7.0459
|
62 |
+
c-0.255859 1.75391 -2.88574 2.82227 -7.8457 2.82227h-204.23c-4.90234 0 -8.26953 -0.742188 -10.125 -1.83008c-1.85645 -1.10059 -3.75684 -3.76953 -5.69629 -7.6416l-57.3242 -112.128h226.374z" />
|
63 |
+
<glyph glyph-name="uniF11A" unicode=""
|
64 |
+
d="M399.36 330.24h61.4395v-368.641h-399.359v368.641h61.4395v92.1602h92.1602v-92.1602h92.1602v92.1602h92.1602v-92.1602zM116.173 121.979c0 2.90332 -0.839844 5.0791 -2.51953 6.54395c-1.68359 1.45898 -4.1875 2.19141 -7.50586 2.19141h-7.26465
|
65 |
+
l-6.72266 -31.8008h5.16113l2.49805 11.8887h2.3916c4.39258 0 7.81738 0.962891 10.2754 2.89258c2.45801 1.93066 3.68652 4.69043 3.68652 8.28418zM100.751 115.175l2.38672 11.1865h2.58984c1.75684 0 3.05176 -0.368164 3.90234 -1.0957
|
66 |
+
c0.849609 -0.726562 1.27441 -1.87402 1.27441 -3.45605c0 -2.11914 -0.706055 -3.74707 -2.12012 -4.9043c-1.40723 -1.15723 -3.40918 -1.73047 -5.99023 -1.73047h-2.04297zM121.841 98.8975l7.19824 33.8486h-5.10938l-7.17871 -33.8486h5.08984zM138.537 122.962
|
67 |
+
v-0.00488281h-5.14062l-2.67285 -12.6982c-0.173828 -0.895508 -0.347656 -1.78613 -0.522461 -2.6875c-0.173828 -0.885742 -0.260742 -1.78223 -0.260742 -2.69824c0 -2.06836 0.527344 -3.64062 1.58691 -4.74121c1.05469 -1.11133 2.55566 -1.65918 4.50098 -1.65918
|
68 |
+
c1.49023 0 2.88281 0.384766 4.17285 1.18262c1.29004 0.798828 2.53418 2.02832 3.72168 3.71777h0.174805l-0.456055 -4.45996h4.02441l5.06836 24.0488h-5.06836l-2.15039 -10.1992c-0.435547 -2.06348 -1.0498 -3.86035 -1.84863 -5.38086
|
69 |
+
c-0.798828 -1.52539 -1.70996 -2.70898 -2.73926 -3.53809c-1.0293 -0.819336 -2.06348 -1.2334 -3.10742 -1.2334c-1.84375 0 -2.76465 0.961914 -2.76465 2.89258c0 0.74707 0.224609 2.15039 0.675781 4.19336zM178.217 122.962h-8.33008
|
70 |
+
c-1.16211 0.291992 -2.31934 0.44043 -3.48145 0.44043c-2.91309 0 -5.25879 -0.870117 -7.03516 -2.61621c-1.78125 -1.74121 -2.66699 -4.02441 -2.66699 -6.87598c0 -2.46777 0.977539 -4.30664 2.93359 -5.47852
|
71 |
+
c-1.44922 -0.681641 -2.51367 -1.37793 -3.18457 -2.12012c-0.675781 -0.732422 -1.01367 -1.60254 -1.01367 -2.60059c0 -1.17773 0.552734 -2.10938 1.65332 -2.75977c-2.23242 -0.748047 -3.85059 -1.66895 -4.8584 -2.76465
|
72 |
+
c-1.00391 -1.08594 -1.51074 -2.37598 -1.51074 -3.87109c0 -1.89941 0.814453 -3.38965 2.42676 -4.47949c1.61816 -1.08594 3.89648 -1.62305 6.84082 -1.62305c4.03418 0 7.1416 0.767578 9.33301 2.31934c2.19141 1.56152 3.28223 3.74707 3.28223 6.58887
|
73 |
+
c0 1.77148 -0.552734 3.13379 -1.65332 4.08105c-1.10156 0.947266 -2.92383 1.58691 -5.47852 1.90918l-2.76562 0.337891c-0.870117 0.123047 -1.53516 0.277344 -1.99121 0.481445c-0.460938 0.200195 -0.686523 0.588867 -0.686523 1.13184
|
74 |
+
c0 0.926758 0.80957 1.67969 2.41699 2.25781c0.583984 -0.107422 1.24902 -0.168945 2.00195 -0.168945c2.89844 0 5.21191 0.814453 6.9375 2.46289s2.59082 3.87012 2.59082 6.6709c0 1.14746 -0.205078 2.13574 -0.609375 2.98047l4.17285 0.716797zM160.404 99.3027
|
75 |
+
l2.98047 -0.307617c1.6377 -0.168945 2.78516 -0.470703 3.43555 -0.890625c0.649414 -0.419922 0.977539 -0.999023 0.977539 -1.74121c0 -1.46387 -0.666016 -2.59082 -2.00195 -3.36914c-1.33105 -0.788086 -3.18457 -1.17188 -5.54492 -1.17188
|
76 |
+
c-1.6543 0 -2.88281 0.28125 -3.68652 0.829102c-0.803711 0.558594 -1.20801 1.30566 -1.20801 2.25293c0 1.13184 0.43457 2.08887 1.30566 2.84668c0.870117 0.77832 2.11914 1.28516 3.74219 1.55176zM166.277 119.982c1.92969 0 2.89258 -1.03418 2.89258 -3.08301
|
77 |
+
c0 -1.17676 -0.194336 -2.25781 -0.578125 -3.24609c-0.384766 -0.977539 -0.921875 -1.76074 -1.6084 -2.31934c-0.691406 -0.5625 -1.50488 -0.849609 -2.44727 -0.849609c-0.957031 0 -1.68945 0.276367 -2.20605 0.839844
|
78 |
+
c-0.517578 0.563477 -0.773438 1.35156 -0.773438 2.38086c0 1.13672 0.194336 2.20117 0.588867 3.16406c0.388672 0.962891 0.941406 1.72559 1.65332 2.2832c0.707031 0.547852 1.53613 0.830078 2.47852 0.830078zM182.277 98.8975l5.11426 24.0596h-5.11426
|
79 |
+
l-5.13086 -24.0596h5.13086zM183.296 128.876c0 -0.804688 0.255859 -1.4082 0.762695 -1.78711c0.506836 -0.374023 1.14746 -0.563477 1.91504 -0.563477c0.942383 0 1.70508 0.291992 2.2832 0.896484c0.579102 0.603516 0.871094 1.41309 0.871094 2.44141
|
80 |
+
c0 0.789062 -0.241211 1.36719 -0.722656 1.75098c-0.475586 0.378906 -1.10059 0.568359 -1.86816 0.568359c-1.0293 0 -1.82324 -0.301758 -2.3916 -0.911133s-0.849609 -1.41309 -0.849609 -2.39551zM203.188 98.8975v0.015625h5.14062l2.97949 14.208
|
81 |
+
c0.333008 1.62305 0.501953 2.93945 0.501953 3.93262c0 2.03223 -0.538086 3.59863 -1.60254 4.7002c-1.06543 1.10547 -2.57031 1.64844 -4.51074 1.64844c-1.49512 0 -2.87793 -0.394531 -4.1582 -1.16699c-1.27441 -0.773438 -2.51855 -2.0127 -3.72168 -3.7334
|
82 |
+
h-0.194336l0.455078 4.45996h-4.00391l-5.12988 -24.0488h5.12988l2.13574 10.1992c0.404297 1.97168 1.01367 3.73242 1.82227 5.28906c0.814453 1.55664 1.73047 2.75488 2.74414 3.5791s2.04297 1.23828 3.08789 1.23828c1.86816 0 2.80566 -0.952148 2.80566 -2.85156
|
83 |
+
c0 -0.603516 -0.12793 -1.55078 -0.389648 -2.85645zM230.753 106.302c0 0.936523 -0.163086 1.76562 -0.491211 2.46777c-0.333008 0.72168 -0.819336 1.38184 -1.45898 1.99121c-0.640625 0.609375 -1.7207 1.3418 -3.24121 2.20215
|
84 |
+
c-1.47949 0.798828 -2.45801 1.44824 -2.93359 1.96094c-0.481445 0.506836 -0.72168 1.08496 -0.72168 1.74023c0 0.855469 0.332031 1.52051 0.988281 2.00195c0.655273 0.481445 1.51465 0.72168 2.5752 0.72168c1.82715 0 3.75781 -0.547852 5.78516 -1.64844
|
85 |
+
l1.6543 3.83008c-2.17676 1.20801 -4.68555 1.81738 -7.52637 1.81738c-2.64258 0 -4.73633 -0.639648 -6.28809 -1.90918c-1.55078 -1.28027 -2.3291 -3.04199 -2.3291 -5.28906c0 -1.36719 0.374023 -2.57031 1.12109 -3.56934
|
86 |
+
c0.74707 -1.00781 2.02734 -2.00195 3.83984 -2.96875c1.55176 -0.886719 2.58105 -1.58789 3.07715 -2.12012c0.49707 -0.527344 0.748047 -1.15723 0.748047 -1.9043c0 -0.994141 -0.435547 -1.79785 -1.30566 -2.37109
|
87 |
+
c-0.871094 -0.573242 -2.00781 -0.870117 -3.41504 -0.870117c-2.30469 0 -4.56738 0.650391 -6.78418 1.95605v-4.4082c1.91504 -0.967773 4.24902 -1.45996 7.00391 -1.45996c3.04688 0 5.42773 0.675781 7.1377 2.0332c1.70996 1.35645 2.56445 3.28711 2.56445 5.7959z
|
88 |
+
M242.826 88.2129c2.12988 0 3.86035 0.639648 5.16602 1.90918c1.32129 1.29004 2.27344 3.3125 2.85156 6.05176l4.84863 22.9072h4.98242l0.803711 3.87598h-4.97656l0.394531 1.86328c0.317383 1.42871 0.777344 2.44727 1.38184 3.07715
|
89 |
+
c0.598633 0.620117 1.40332 0.9375 2.40137 0.9375c0.901367 0 1.88379 -0.205078 2.95898 -0.609375l1.32617 3.82422c-1.39746 0.625 -2.92871 0.942383 -4.58691 0.942383c-2.40625 0 -4.27051 -0.609375 -5.58105 -1.8125
|
90 |
+
c-1.31055 -1.20801 -2.2832 -3.24121 -2.92383 -6.11816l-0.455078 -2.00781l-4.21973 -1.64844l-0.455078 -2.29883h3.89062l-4.71973 -22.2363c-0.625 -2.96973 -1.90527 -4.45898 -3.85059 -4.45898c-0.727539 0 -1.55176 0.143555 -2.47852 0.43457v-4.13184
|
91 |
+
c0.855469 -0.342773 1.93555 -0.500977 3.24121 -0.500977zM282.772 113.956c0 2.89258 -0.798828 5.19141 -2.38086 6.87598c-1.60254 1.67969 -3.80957 2.51855 -6.64062 2.51855c-2.45215 0 -4.61328 -0.669922 -6.48145 -2.01172
|
92 |
+
c-1.88477 -1.3418 -3.33398 -3.2207 -4.37305 -5.62207c-1.0293 -2.41602 -1.55078 -5.06348 -1.55078 -7.94629c0 -2.85156 0.818359 -5.11426 2.45215 -6.77344c1.63867 -1.65918 3.85059 -2.4834 6.64062 -2.4834c2.40625 0 4.53613 0.640625 6.37988 1.92578
|
93 |
+
c1.85254 1.2793 3.30664 3.11719 4.36719 5.51855c1.05469 2.40723 1.58691 5.07422 1.58691 7.99805zM277.622 114.176c0 -2.13477 -0.296875 -4.08594 -0.871094 -5.8623c-0.588867 -1.77148 -1.39746 -3.15918 -2.43652 -4.1416
|
94 |
+
c-1.0498 -0.988281 -2.22266 -1.48047 -3.52246 -1.48047c-1.4082 0 -2.46289 0.430664 -3.19043 1.29102c-0.72168 0.849609 -1.06934 2.08887 -1.06934 3.69141c0 2.01172 0.291016 3.90625 0.879883 5.68848c0.579102 1.76562 1.4082 3.17871 2.47363 4.21289
|
95 |
+
c1.06445 1.04004 2.2627 1.55664 3.61914 1.55664c1.32129 0 2.33496 -0.429688 3.04688 -1.31055s1.07031 -2.08887 1.07031 -3.64551zM301.731 123.402c-1.35645 0 -2.63086 -0.394531 -3.84473 -1.14746c-1.19336 -0.762695 -2.40625 -2.01172 -3.60938 -3.75293
|
96 |
+
h-0.189453l0.450195 4.45996h-3.99316l-5.13574 -24.0488h5.13574l2.30371 10.8701c0.557617 2.66211 1.56641 4.80762 3 6.44629c1.43945 1.63281 3.07227 2.45215 4.88965 2.45215c0.702148 0 1.44434 -0.107422 2.22754 -0.3125l1.11621 4.7666
|
97 |
+
c-0.675781 0.174805 -1.44922 0.266602 -2.35059 0.266602zM119.286 43.2178l14.249 31.8008h-5.35059l-7.78809 -18.4014c-0.276367 -0.620117 -0.716797 -1.71582 -1.32617 -3.3125c-0.608398 -1.58789 -1.11621 -3.02637 -1.52051 -4.2959h-0.173828l0.0664062 4.09082
|
98 |
+
l-0.0664062 3.67578l-0.670898 18.2432h-4.89453l-8.41699 -18.2891c-0.855469 -1.94043 -1.88477 -4.52051 -3.08789 -7.7207h-0.12793c0.18457 3.0459 0.282227 5.5498 0.282227 7.52637l-0.415039 18.4834h-4.98145l1.15137 -31.8008h5.56543l8.37695 18.3193
|
99 |
+
c1.01367 2.12988 1.86328 4.23926 2.54395 6.32324h0.12793l-0.0869141 -2.30371l0.12793 -4.01953l0.803711 -18.3193h5.6123zM152.551 58.2754c0 2.89355 -0.798828 5.19727 -2.3916 6.87695c-1.5918 1.67871 -3.80371 2.51855 -6.62988 2.51855
|
100 |
+
c-2.44727 0 -4.6084 -0.670898 -6.48242 -2.01172c-1.87402 -1.3418 -3.32812 -3.2207 -4.3623 -5.62207c-1.03906 -2.41699 -1.55664 -5.06348 -1.55664 -7.94629c0 -2.85156 0.819336 -5.11523 2.45801 -6.77344c1.63281 -1.65918 3.85059 -2.4834 6.63086 -2.4834
|
101 |
+
c2.40625 0 4.53613 0.639648 6.38379 1.9248c1.84863 1.28027 3.30273 3.11816 4.3623 5.51953c1.06055 2.40625 1.58789 5.07422 1.58789 7.99707zM147.395 58.4961c0 -2.13477 -0.291992 -4.08594 -0.865234 -5.8623
|
102 |
+
c-0.583984 -1.77148 -1.39258 -3.15918 -2.4375 -4.14258c-1.04395 -0.988281 -2.2168 -1.47949 -3.52246 -1.47949c-1.4082 0 -2.47266 0.430664 -3.18945 1.29004c-0.716797 0.850586 -1.0752 2.08887 -1.0752 3.69141c0 2.0127 0.291992 3.90723 0.880859 5.68848
|
103 |
+
c0.583008 1.7666 1.41309 3.17969 2.47754 4.21387c1.06543 1.03906 2.27344 1.55664 3.62012 1.55664c1.32129 0 2.33496 -0.429688 3.04688 -1.31055c0.710938 -0.880859 1.06445 -2.08887 1.06445 -3.64551zM171.51 67.7227
|
104 |
+
c-1.35156 0 -2.62695 -0.394531 -3.82422 -1.14746c-1.20898 -0.762695 -2.41211 -2.01172 -3.61523 -3.75293h-0.194336l0.455078 4.45996h-4.00293l-5.13086 -24.0488h5.13086l2.30371 10.8701c0.563477 2.66211 1.56641 4.80762 3 6.44531
|
105 |
+
c1.43848 1.63379 3.07227 2.45312 4.89453 2.45312c0.702148 0 1.43945 -0.107422 2.22266 -0.3125l1.10547 4.7666c-0.660156 0.173828 -1.44922 0.266602 -2.34473 0.266602zM185.462 67.7227c-2.12012 0 -4.04492 -0.711914 -5.78027 -2.125
|
106 |
+
c-1.73633 -1.41309 -3.12891 -3.41992 -4.16309 -6.00098c-1.03906 -2.58594 -1.55664 -5.36035 -1.55664 -8.33008c0 -2.70312 0.588867 -4.78711 1.76172 -6.25684c1.17773 -1.47461 2.80078 -2.2168 4.87402 -2.2168c1.33105 0 2.5957 0.322266 3.78418 0.977539
|
107 |
+
c1.1875 0.650391 2.4209 1.75098 3.69629 3.29297h0.15332l-0.414062 -3.83008h3.99805l7.17871 33.8379h-5.06934l-1.65332 -7.78711c-0.348633 -1.50098 -0.614258 -3.32324 -0.803711 -5.43262h-0.174805c-1.29492 2.58008 -3.23535 3.87109 -5.83105 3.87109z
|
108 |
+
M182.543 46.9199c-2.27246 0 -3.41504 1.47461 -3.41504 4.41797c0 2.0127 0.323242 3.99902 0.958008 5.93945s1.49512 3.47168 2.56543 4.58789c1.06934 1.11621 2.22168 1.67383 3.45508 1.67383c1.29102 0 2.25293 -0.399414 2.88281 -1.1875
|
109 |
+
c0.629883 -0.798828 0.947266 -1.8584 0.947266 -3.17969c0 -1.96094 -0.347656 -3.89648 -1.05469 -5.81152c-0.701172 -1.91504 -1.63867 -3.46094 -2.80566 -4.64844c-1.16699 -1.20312 -2.34473 -1.79199 -3.5332 -1.79199zM223.053 66.2988
|
110 |
+
c0 2.90332 -0.839844 5.0791 -2.51367 6.54297c-1.68457 1.45996 -4.18848 2.19141 -7.50586 2.19141h-7.26562l-6.72266 -31.7998h5.15625l2.49805 11.8887h2.3916c4.39258 0 7.81836 0.962891 10.2754 2.89258c2.45801 1.93066 3.68652 4.69043 3.68652 8.28418z
|
111 |
+
M207.632 59.4941l2.38574 11.1875h2.59082c1.75586 0 3.05078 -0.369141 3.90137 -1.0957c0.849609 -0.727539 1.27441 -1.87402 1.27441 -3.45605c0 -2.12012 -0.706055 -3.74805 -2.11914 -4.90527c-1.4082 -1.15723 -3.41016 -1.73047 -5.99121 -1.73047h-2.04199z
|
112 |
+
M239.943 67.7227c-1.34668 0 -2.62109 -0.394531 -3.82422 -1.14746c-1.20801 -0.762695 -2.41113 -2.01172 -3.61523 -3.75293h-0.194336l0.456055 4.45996h-4.00391l-5.12988 -24.0488h5.12988l2.30371 10.8701c0.563477 2.66211 1.56641 4.80762 3.00098 6.44531
|
113 |
+
c1.43848 1.63379 3.07129 2.45312 4.89453 2.45312c0.701172 0 1.43848 -0.107422 2.22168 -0.3125l1.10645 4.7666c-0.661133 0.173828 -1.44922 0.266602 -2.3457 0.266602zM251.484 42.7881c1.43359 0 2.7334 0.137695 3.89062 0.378906
|
114 |
+
c1.16797 0.271484 2.44727 0.726562 3.84082 1.36133v4.07031c-1.4082 -0.665039 -2.62695 -1.13672 -3.65625 -1.40723c-1.0293 -0.282227 -2.06348 -0.419922 -3.10742 -0.419922c-1.62891 0 -2.84668 0.460938 -3.66602 1.37207s-1.22949 2.18066 -1.22949 3.78906
|
115 |
+
v0.628906l0.046875 0.670898h0.936523c4.46484 0 7.90527 0.75293 10.3271 2.2373c2.41699 1.48535 3.62012 3.54297 3.62012 6.19043c0 1.9248 -0.650391 3.41504 -1.94043 4.46973c-1.2959 1.0498 -3.11328 1.57715 -5.44824 1.57715
|
116 |
+
c-2.38086 0 -4.53125 -0.670898 -6.45117 -2.02246s-3.44531 -3.26172 -4.56641 -5.73438c-1.12207 -2.46289 -1.68457 -5.13574 -1.68457 -8.0127c0 -2.87793 0.798828 -5.11523 2.40137 -6.7334c1.60254 -1.61719 3.8291 -2.41602 6.68652 -2.41602zM254.792 63.8008
|
117 |
+
c0.911133 0 1.60254 -0.205078 2.07324 -0.609375c0.46582 -0.415039 0.696289 -0.983398 0.696289 -1.73047c0 -1.42871 -0.773438 -2.5293 -2.30859 -3.29785c-1.53613 -0.783203 -3.67188 -1.16699 -6.39551 -1.16699h-0.634766
|
118 |
+
c0.538086 2.04785 1.41797 3.69629 2.6416 4.93555c1.22363 1.24414 2.53516 1.86914 3.92773 1.86914zM280.289 50.6211c0 0.9375 -0.168945 1.7666 -0.496094 2.46777c-0.328125 0.722656 -0.819336 1.38281 -1.45996 1.99219
|
119 |
+
c-0.628906 0.609375 -1.70996 1.3418 -3.24023 2.20117c-1.47949 0.798828 -2.45312 1.44922 -2.92871 1.96094c-0.481445 0.506836 -0.72168 1.08594 -0.72168 1.74121c0 0.855469 0.322266 1.52051 0.982422 2.00195s1.52051 0.72168 2.58105 0.72168
|
120 |
+
c1.82715 0 3.75781 -0.547852 5.78516 -1.64844l1.64844 3.83008c-2.18066 1.20801 -4.67969 1.81738 -7.53125 1.81738c-2.6416 0 -4.73047 -0.640625 -6.28711 -1.91016c-1.55176 -1.2793 -2.3252 -3.04102 -2.3252 -5.28906
|
121 |
+
c0 -1.36621 0.374023 -2.57031 1.12207 -3.56836c0.74707 -1.00879 2.02734 -2.00195 3.83984 -2.96973c1.55664 -0.885742 2.58496 -1.5918 3.08203 -2.11914s0.74707 -1.15723 0.74707 -1.90527c0 -0.993164 -0.439453 -1.79688 -1.31055 -2.37012
|
122 |
+
c-0.870117 -0.573242 -2.01172 -0.870117 -3.40918 -0.870117c-2.30957 0 -4.5625 0.649414 -6.79004 1.95508v-4.4082c1.9209 -0.967773 4.25 -1.45898 7.00977 -1.45898c3.04102 0 5.42188 0.675781 7.13184 2.03223c1.71582 1.35742 2.57031 3.28711 2.57031 5.7959z
|
123 |
+
M299.898 50.6211c0 0.9375 -0.168945 1.7666 -0.496094 2.46777c-0.328125 0.722656 -0.819336 1.38281 -1.45898 1.99219c-0.629883 0.609375 -1.70996 1.3418 -3.24121 2.20117c-1.47949 0.798828 -2.45215 1.44922 -2.92871 1.96094
|
124 |
+
c-0.481445 0.506836 -0.72168 1.08594 -0.72168 1.74121c0 0.855469 0.322266 1.52051 0.982422 2.00195c0.661133 0.481445 1.52148 0.72168 2.58105 0.72168c1.82812 0 3.75781 -0.547852 5.78516 -1.64844l1.64844 3.83008
|
125 |
+
c-2.18066 1.20801 -4.67969 1.81738 -7.53125 1.81738c-2.6416 0 -4.73047 -0.640625 -6.28711 -1.91016c-1.55176 -1.2793 -2.32422 -3.04102 -2.32422 -5.28906c0 -1.36621 0.373047 -2.57031 1.12109 -3.56836c0.74707 -1.00879 2.02734 -2.00195 3.83984 -2.96973
|
126 |
+
c1.55176 -0.885742 2.58008 -1.58691 3.08203 -2.11914c0.492188 -0.527344 0.748047 -1.15723 0.748047 -1.90527c0 -0.993164 -0.44043 -1.79688 -1.31055 -2.37012c-0.871094 -0.573242 -2.0127 -0.870117 -3.41016 -0.870117
|
127 |
+
c-2.30957 0 -4.5625 0.649414 -6.78906 1.95508v-4.4082c1.91992 -0.967773 4.24902 -1.45898 7.00879 -1.45898c3.04102 0 5.42188 0.675781 7.13281 2.03223c1.71484 1.35742 2.56934 3.28711 2.56934 5.7959zM119.152 6.96875
|
128 |
+
c0 4.03906 -1.05957 7.11621 -3.17383 9.2207c-2.11523 2.09961 -5.14062 3.14844 -9.06738 3.14844h-8.02832l-6.72266 -31.7998h8.72461c3.7373 0 6.99316 0.798828 9.76367 2.37012c2.76953 1.57715 4.87891 3.83984 6.32812 6.76855s2.17578 6.35938 2.17578 10.292z
|
129 |
+
M101.146 -8.08496v0l-2.93848 -0.00976562l4.93555 23.0811h3.17969c2.43164 0 4.28516 -0.701172 5.56543 -2.09961c1.27441 -1.39258 1.91406 -3.4248 1.91406 -6.09277c0 -2.9082 -0.506836 -5.48828 -1.53027 -7.74609
|
130 |
+
c-1.01855 -2.25781 -2.48828 -4.01953 -4.40332 -5.26367s-4.15723 -1.86914 -6.72266 -1.86914zM131.216 -12.8926c1.43848 0 2.73828 0.138672 3.89551 0.378906c1.16797 0.271484 2.44727 0.727539 3.84082 1.3623v4.07031
|
131 |
+
c-1.4082 -0.665039 -2.62695 -1.13672 -3.65625 -1.4082c-1.0293 -0.28125 -2.06348 -0.419922 -3.10742 -0.419922c-1.62891 0 -2.84668 0.460938 -3.66602 1.37207c-0.819336 0.912109 -1.22949 2.18164 -1.22949 3.78906v0.629883l0.046875 0.670898h0.936523
|
132 |
+
c4.46484 0 7.90527 0.75293 10.3223 2.2373c2.41602 1.48438 3.625 3.54297 3.625 6.19043c0 1.9248 -0.650391 3.41504 -1.94629 4.46973c-1.29492 1.0498 -3.1123 1.57715 -5.44727 1.57715c-2.38086 0 -4.53125 -0.670898 -6.45117 -2.02246
|
133 |
+
c-1.91992 -1.35254 -3.44531 -3.26172 -4.56738 -5.73438c-1.12109 -2.46289 -1.68457 -5.13574 -1.68457 -8.01367c0 -2.87695 0.798828 -5.11426 2.40137 -6.73242s3.83008 -2.41699 6.6875 -2.41699zM134.522 8.12012c0.912109 0 1.60254 -0.205078 2.07422 -0.609375
|
134 |
+
c0.46582 -0.414062 0.696289 -0.982422 0.696289 -1.73047c0 -1.42871 -0.773438 -2.5293 -2.30957 -3.29688c-1.53613 -0.783203 -3.6709 -1.16797 -6.39453 -1.16797h-0.634766c0.537109 2.04883 1.41797 3.69727 2.6416 4.93652
|
135 |
+
c1.22852 1.24414 2.53418 1.86816 3.92676 1.86816zM148.04 -12.4619v0h5.97461l13.0098 24.0586h-5.4375l-6.76367 -13.0098c-0.332031 -0.604492 -0.803711 -1.55664 -1.41309 -2.87207c-0.608398 -1.32129 -1.11621 -2.51953 -1.52051 -3.58984h-0.15332
|
136 |
+
c0 2.00195 -0.102539 4.16309 -0.307617 6.46191l-1.19727 13.0098h-5.04395zM175.391 -12.8926c1.43848 0 2.73926 0.138672 3.90137 0.378906c1.16797 0.271484 2.44727 0.727539 3.83984 1.3623v4.07031c-1.40723 -0.665039 -2.62598 -1.13672 -3.65527 -1.4082
|
137 |
+
c-1.0293 -0.28125 -2.06348 -0.419922 -3.1084 -0.419922c-1.62793 0 -2.84668 0.460938 -3.66504 1.37207c-0.819336 0.912109 -1.22949 2.18164 -1.22949 3.78906v0.629883l0.0458984 0.670898h0.932617c4.46387 0 7.90527 0.75293 10.3213 2.2373
|
138 |
+
c2.41699 1.48438 3.625 3.54297 3.625 6.19043c0 1.9248 -0.650391 3.41504 -1.94531 4.46973c-1.29492 1.0498 -3.11328 1.57715 -5.44727 1.57715c-2.38086 0 -4.53125 -0.670898 -6.45117 -2.02246c-1.9209 -1.35254 -3.44629 -3.26172 -4.56738 -5.73438
|
139 |
+
c-1.12109 -2.46289 -1.68457 -5.13574 -1.68457 -8.01367c0 -2.87695 0.798828 -5.11426 2.40137 -6.73242s3.83008 -2.41699 6.68652 -2.41699zM178.698 8.12012c0.911133 0 1.60254 -0.205078 2.07324 -0.609375c0.46582 -0.414062 0.696289 -0.982422 0.696289 -1.73047
|
140 |
+
c0 -1.42871 -0.772461 -2.5293 -2.30859 -3.29688c-1.53613 -0.783203 -3.6709 -1.16797 -6.39551 -1.16797h-0.634766c0.538086 2.04883 1.41895 3.69727 2.64258 4.93652c1.22852 1.24414 2.53418 1.86816 3.92676 1.86816zM193.301 -12.4619l7.19824 33.8486h-5.10938
|
141 |
+
l-7.17871 -33.8486h5.08984zM222.459 2.5957c0 2.89258 -0.798828 5.19727 -2.3916 6.87598c-1.5918 1.67969 -3.80371 2.51953 -6.62988 2.51953c-2.44727 0 -4.6084 -0.670898 -6.48242 -2.0127c-1.87305 -1.34082 -3.32715 -3.21973 -4.36133 -5.62109
|
142 |
+
c-1.04004 -2.41699 -1.55664 -5.06445 -1.55664 -7.94629c0 -2.85254 0.819336 -5.11523 2.45703 -6.77441c1.63379 -1.6582 3.85059 -2.48242 6.63086 -2.48242c2.40625 0 4.53613 0.639648 6.38477 1.9248c1.84766 1.28027 3.30762 3.11816 4.3623 5.51953
|
143 |
+
c1.05469 2.40625 1.58691 5.07324 1.58691 7.99707zM217.303 2.81641c0 -2.13574 -0.291992 -4.08594 -0.865234 -5.86328c-0.583008 -1.77148 -1.39258 -3.1582 -2.43652 -4.1416c-1.04492 -0.988281 -2.21777 -1.47949 -3.52246 -1.47949
|
144 |
+
c-1.4082 0 -2.47363 0.429688 -3.19043 1.29004c-0.716797 0.849609 -1.0752 2.08887 -1.0752 3.69141c0 2.0127 0.291992 3.90625 0.880859 5.68848c0.583984 1.7666 1.41309 3.17969 2.47852 4.21387c1.06445 1.03906 2.27246 1.55664 3.61914 1.55664
|
145 |
+
c1.32129 0 2.33496 -0.430664 3.04688 -1.31055c0.711914 -0.880859 1.06445 -2.08984 1.06445 -3.64551zM236.651 -12.8926c2.09961 0 4.02441 0.716797 5.77539 2.14551s3.13379 3.44043 4.14746 6.01074c1.01367 2.57617 1.52051 5.34082 1.52051 8.2998
|
146 |
+
c0 2.65723 -0.583984 4.72559 -1.76172 6.2207c-1.17676 1.49512 -2.7998 2.24316 -4.87402 2.24316c-2.70801 0 -5.20215 -1.51074 -7.48047 -4.52637h-0.194336l0.456055 4.0957h-4.00391l-7.35254 -34.7598h5.06934l2.08887 10.0713
|
147 |
+
c0.260742 1.28027 0.439453 2.62109 0.541992 4.0293h0.21582c1.27441 -2.55957 3.22559 -3.83008 5.85156 -3.83008zM239.544 7.85938c2.24805 0 3.36914 -1.45898 3.37402 -4.37305c0 -2.07812 -0.311523 -4.07031 -0.936523 -5.97949
|
148 |
+
c-0.625 -1.89941 -1.47461 -3.4209 -2.54492 -4.56738c-1.06934 -1.14648 -2.22168 -1.70996 -3.45605 -1.70996c-1.2334 0 -2.18555 0.388672 -2.86133 1.16699c-0.675781 0.783203 -1.01465 1.86914 -1.01465 3.26172c0 2.02246 0.369141 3.98828 1.10156 5.8877
|
149 |
+
c0.726562 1.90527 1.67383 3.43066 2.83594 4.58301c1.15723 1.15723 2.33008 1.73047 3.50195 1.73047zM267.279 12.042c-2.9541 0 -5.50879 -1.64355 -7.66504 -4.89453h-0.194336l0.456055 4.45996h-4.00391l-5.12988 -24.0596h5.12988l2.13477 10.1992
|
150 |
+
c0.645508 3.06152 1.64844 5.52441 3.00586 7.35742c1.35156 1.84375 2.82617 2.76465 4.42871 2.76465c1.68945 0 2.53906 -0.977539 2.53906 -2.93359c0 -0.655273 -0.117188 -1.57715 -0.368164 -2.76465l-3.10254 -14.6123h5.10938l2.20117 10.46
|
151 |
+
c0.620117 2.96973 1.60352 5.3457 2.96484 7.14746c1.34668 1.79688 2.81641 2.69824 4.37793 2.69824c1.76074 0 2.63672 -0.942383 2.63672 -2.81055c0 -0.542969 -0.132812 -1.50586 -0.410156 -2.8877l-3.10254 -14.6123h5.11035l3.04102 14.1973
|
152 |
+
c0.327148 1.7002 0.481445 3.01074 0.481445 3.94238c0 2.0127 -0.501953 3.56836 -1.51074 4.67969c-1.00391 1.11621 -2.46777 1.66895 -4.40332 1.66895c-1.48926 0 -2.92871 -0.429688 -4.31641 -1.2998c-1.39258 -0.860352 -2.62109 -2.12988 -3.71191 -3.80957
|
153 |
+
h-0.173828c-0.496094 3.39941 -2.33496 5.10938 -5.52441 5.10938zM299.986 -12.8926c1.43359 0 2.73926 0.138672 3.88574 0.378906c1.17285 0.271484 2.45215 0.727539 3.83984 1.3623v4.07031c-1.4082 -0.665039 -2.62695 -1.13672 -3.65039 -1.4082
|
154 |
+
c-1.0293 -0.28125 -2.06836 -0.419922 -3.1084 -0.419922c-1.63281 0 -2.85156 0.460938 -3.6709 1.37207c-0.819336 0.912109 -1.22363 2.18164 -1.22363 3.78906v0.629883l0.0458984 0.670898h0.942383c4.45996 0 7.90039 0.75293 10.3223 2.2373
|
155 |
+
c2.41602 1.48438 3.62012 3.54297 3.62012 6.19043c0 1.9248 -0.650391 3.41504 -1.95117 4.46973c-1.28516 1.0498 -3.10742 1.57715 -5.44238 1.57715c-2.37598 0 -4.52637 -0.670898 -6.44629 -2.02246c-1.9248 -1.35254 -3.45117 -3.26172 -4.57227 -5.73438
|
156 |
+
c-1.13184 -2.46289 -1.68945 -5.13574 -1.68945 -8.01367c0 -2.87695 0.808594 -5.12988 2.41113 -6.73242c1.60254 -1.61816 3.83008 -2.41699 6.6875 -2.41699zM303.288 8.12012c0.916992 0 1.6084 -0.205078 2.05371 -0.609375
|
157 |
+
c0.459961 -0.414062 0.701172 -0.982422 0.701172 -1.73047c0 -1.42871 -0.768555 -2.5293 -2.30371 -3.29688c-1.54688 -0.783203 -3.67676 -1.16797 -6.39551 -1.16797h-0.629883c0.542969 2.04883 1.41309 3.69727 2.64258 4.93652
|
158 |
+
c1.2334 1.24414 2.54395 1.86816 3.93164 1.86816zM327.056 -12.4619h0.00488281v0.015625h5.13574l2.97949 14.208c0.342773 1.62305 0.501953 2.93848 0.501953 3.93164c0 2.0332 -0.533203 3.59961 -1.59766 4.7002c-1.07031 1.10645 -2.57031 1.64844 -4.51562 1.64844
|
159 |
+
c-1.49512 0 -2.88281 -0.393555 -4.16309 -1.16699c-1.26953 -0.773438 -2.52441 -2.0127 -3.72168 -3.73242h-0.195312l0.456055 4.45898h-3.99902l-5.12988 -24.0479h5.12988l2.12988 10.1982c0.410156 1.97168 1.01367 3.73242 1.82812 5.28906
|
160 |
+
c0.808594 1.55664 1.71484 2.75488 2.73926 3.5791s2.05273 1.23926 3.09277 1.23926c1.86816 0 2.81055 -0.952148 2.81055 -2.85156c0 -0.604492 -0.12793 -1.55176 -0.399414 -2.85742zM347.51 -8.76074c-0.737305 0 -1.29004 0.18457 -1.65332 0.547852
|
161 |
+
c-0.358398 0.369141 -0.538086 0.871094 -0.538086 1.49023c0 0.547852 0.0976562 1.21387 0.28125 2.0127l2.66309 12.4414h6.02051l0.850586 3.87012h-6.07227l1.13086 5.35059h-3.16895l-2.81055 -5.03809l-4.13184 -1.79199l-0.460938 -2.39062h3.52246
|
162 |
+
l-2.63184 -12.4014c-0.235352 -1.06934 -0.348633 -2.02148 -0.348633 -2.85156c0 -3.5791 1.99219 -5.37109 5.95996 -5.37109c0.870117 0 1.74121 0.0976562 2.61133 0.287109c0.875977 0.18457 1.55664 0.404297 2.06836 0.650391v3.87012
|
163 |
+
c-1.21289 -0.450195 -2.31445 -0.675781 -3.29199 -0.675781zM116.858 188.001l11.6797 56.1611h15.6816l3.50293 15.9287h-50.6885l-3.4043 -15.9287h15.6309l-11.6836 -56.1611h19.2812zM164.168 187.019c6.3125 0 11.8369 1.54102 16.5684 4.62793
|
164 |
+
c4.73047 3.08789 8.40137 7.42383 11.0176 12.9951c2.61621 5.5752 3.92188 11.8115 3.92188 18.7129c0 6.90234 -1.86328 12.2119 -5.5957 15.9287c-3.73242 3.71191 -9.03223 5.57031 -15.9023 5.57031c-6.31348 0 -11.833 -1.54102 -16.5684 -4.63379
|
165 |
+
c-4.73145 -3.0918 -8.40723 -7.42383 -11.0186 -12.9941c-2.61621 -5.5752 -3.92188 -11.8115 -3.92188 -18.7139c0 -6.90137 1.86328 -12.2109 5.5957 -15.9277c3.73242 -3.71777 9.03223 -5.56543 15.9033 -5.56543zM171.96 230.508
|
166 |
+
c1.31641 0 2.35059 -0.547852 3.1084 -1.6543c0.757812 -1.10059 1.13672 -2.73926 1.13672 -4.9043c0 -5.9502 -0.988281 -11.208 -2.95996 -15.7803c-1.9707 -4.57227 -4.28516 -6.85547 -6.95312 -6.85547c-2.75879 0 -4.1416 2.18652 -4.1416 6.55859
|
167 |
+
c0 5.91895 0.957031 11.167 2.88281 15.7539c1.91992 4.58789 4.22852 6.88184 6.92676 6.88184zM222.331 187.019c6.3125 0 11.832 1.54102 16.5684 4.62793c4.73047 3.08789 8.40137 7.42383 11.0176 12.9951c2.61719 5.5752 3.92285 11.8115 3.92285 18.7129
|
168 |
+
c0 6.90234 -1.86426 12.2119 -5.59668 15.9287c-3.73242 3.71191 -9.03125 5.57031 -15.9023 5.57031c-6.31348 0 -11.833 -1.54102 -16.5684 -4.63379c-4.73145 -3.0918 -8.40723 -7.42383 -11.0186 -12.9941c-2.61621 -5.5752 -3.92188 -11.8115 -3.92188 -18.7139
|
169 |
+
c0 -6.90137 1.86328 -12.2109 5.5957 -15.9277c3.73242 -3.71777 9.03223 -5.56543 15.9033 -5.56543zM230.123 230.508c1.31152 0 2.35059 -0.547852 3.1084 -1.6543c0.757812 -1.10059 1.13672 -2.73926 1.13672 -4.9043c0 -5.9502 -0.988281 -11.208 -2.95996 -15.7803
|
170 |
+
c-1.9707 -4.57227 -4.28516 -6.85547 -6.95215 -6.85547c-2.75977 0 -4.14258 2.18652 -4.14258 6.55859c0 5.91895 0.958008 11.167 2.88281 15.7539c1.91992 4.58789 4.22852 6.88184 6.92676 6.88184zM275.072 188.001l16.2197 76.7236h-19.0869l-16.2207 -76.7236
|
171 |
+
h19.0879zM328.494 207.381c0 6.83496 -3.69141 12.0986 -11.0947 15.7744c-2.33496 1.15234 -4.01953 2.08887 -5.05371 2.81055c-1.03418 0.722656 -1.55176 1.56152 -1.55176 2.51465c0 2.2373 1.23926 3.35352 3.73828 3.35352
|
172 |
+
c1.67383 0 3.68066 -0.419922 5.99023 -1.25977c2.31934 -0.839844 4.55664 -1.96582 6.72754 -3.37891l5.96973 12.4258c-2.8623 1.77637 -5.80566 3.09277 -8.83203 3.94727c-3.03125 0.855469 -6.37891 1.28027 -10.0605 1.28027
|
173 |
+
c-7.33203 0 -12.9844 -1.53125 -16.9629 -4.58789c-3.96777 -3.05664 -5.96484 -7.41309 -5.96484 -13.0654c0 -3.54883 0.793945 -6.55371 2.3916 -9.02148c1.5918 -2.46777 4.13184 -4.6543 7.61816 -6.55957c3.41504 -1.94043 5.55566 -3.32715 6.41016 -4.16699
|
174 |
+
c0.855469 -0.839844 1.28027 -1.83301 1.28027 -2.98535c0 -1.08496 -0.552734 -1.92969 -1.6748 -2.53906c-1.11035 -0.609375 -2.78516 -0.912109 -5.02734 -0.912109c-2.66211 0 -5.28906 0.328125 -7.88965 0.988281
|
175 |
+
c-2.59082 0.655273 -5.40234 1.80762 -8.42773 3.45117v-15.334c4.4082 -2.06934 10.2549 -3.09766 17.5566 -3.09766c8.02832 0 14.1719 1.75586 18.4473 5.27344c4.26953 3.51758 6.41016 8.5498 6.41016 15.0889zM358.349 187.019
|
176 |
+
c4.17285 0 7.84961 0.373047 11.0391 1.10059c3.18945 0.742188 6.62012 2.04785 10.3115 3.92188v13.5117c-3.18945 -1.67969 -6.04199 -2.90332 -8.53027 -3.67578c-2.49805 -0.773438 -5.04785 -1.15723 -7.64355 -1.15723c-5.3916 0 -8.08496 2.43164 -8.08496 7.2959
|
177 |
+
v0.788086h2.9082c9.72852 0 17.1572 1.77148 22.3076 5.30469c5.14062 3.53223 7.71094 8.60645 7.71094 15.2109c0 4.70605 -1.79199 8.46875 -5.37109 11.2949c-3.57812 2.82617 -8.49902 4.23926 -14.7451 4.23926c-6.27246 0 -11.8018 -1.43359 -16.5938 -4.31055
|
178 |
+
c-4.78223 -2.87793 -8.54004 -7.10156 -11.29 -12.6719c-2.73926 -5.57617 -4.12109 -11.833 -4.12109 -18.7656c0 -6.9375 1.94043 -12.3486 5.82129 -16.2451s9.31348 -5.8418 16.2812 -5.8418zM366.142 231.936c1.44336 0 2.49316 -0.363281 3.15332 -1.08496
|
179 |
+
c0.65625 -0.72168 0.983398 -1.60742 0.983398 -2.66211c0 -2.2373 -1.0293 -4.03516 -3.06152 -5.40234c-2.0332 -1.36133 -4.84863 -2.04199 -8.42773 -2.04199h-1.42871c0.364258 2.89258 1.41309 5.4834 3.1543 7.7666c1.74609 2.2832 3.62012 3.4248 5.62695 3.4248z
|
180 |
+
M415.432 202.353c-2.08398 0 -3.11328 1.03418 -3.09277 3.11328c0 0.916016 0.255859 2.64648 0.789062 5.17578l4.14648 18.8828h14.2441l3.1084 14.3516h-14.1982l2.41699 11.1924h-12.7129l-6.75391 -11.832l-10.7568 -4.3418l-2.02734 -9.37012h7.59277
|
181 |
+
l-4.14746 -19.8242c-0.783203 -3.68164 -1.18262 -6.77441 -1.18262 -9.27246c0 -4.7666 1.25977 -8.19727 3.76855 -10.2812c2.51367 -2.08887 6.20508 -3.12793 11.0693 -3.12793c6.70703 0 12.2881 1.10059 16.7578 3.30176v14.3516
|
182 |
+
c-3.83984 -1.55078 -6.85059 -2.31934 -9.02148 -2.31934z" />
|
183 |
+
<glyph glyph-name="uniF11E" unicode=""
|
184 |
+
d="M371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM119.507 152.666c152.32 -172.615 276.192 0 276.192 0c-152.32 168.55 -276.192 0 -276.192 0zM257.594 203.808c28.7549 0 52.0576 -23.3086 52.0576 -52.0576
|
185 |
+
c0 -28.7227 -23.2959 -52.0381 -52.0576 -52.0381c-28.7295 0 -52.0322 23.3154 -52.0322 52.0381c0 28.749 23.3027 52.0576 52.0322 52.0576zM257.594 117.453c18.957 0 34.3164 15.3594 34.3164 34.2969c0 18.957 -15.3594 34.3105 -34.3164 34.3105
|
186 |
+
c-18.9316 0 -34.2979 -15.3535 -34.2979 -34.3105c0 -18.9375 15.3662 -34.2969 34.2979 -34.2969z" />
|
187 |
+
<glyph glyph-name="uniF115" unicode=""
|
188 |
+
d="M371.2 345.6h76.7998v-384h-384v384h76.7998v76.8008h76.7998v-76.8008h76.8008v76.8008h76.7998v-76.8008zM342.624 49.6641l0.0126953 1.03027l-0.441406 50.0029l-0.0703125 -1.29199c-0.0830078 -0.793945 -0.210938 -1.58789 -0.397461 -2.36816
|
189 |
+
l-0.0761719 -0.230469c-0.185547 -0.678711 -0.422852 -1.36328 -0.710938 -2.0293l-0.236328 -0.5625c-0.313477 -0.672852 -0.65918 -1.33789 -1.0625 -2.00391l-0.102539 -0.15332c-0.435547 -0.697266 -0.972656 -1.38867 -1.49707 -2.07324l-0.442383 -0.525391
|
190 |
+
c-0.524414 -0.594727 -1.06836 -1.19629 -1.66406 -1.79785l-0.306641 -0.300781c-0.723633 -0.704102 -1.5293 -1.40234 -2.3877 -2.08691l-0.537109 -0.40332c-0.954102 -0.729492 -1.93945 -1.47168 -3.02734 -2.16309l-0.185547 -0.133789
|
191 |
+
c-1.33789 -0.864258 -2.77734 -1.70898 -4.30078 -2.51562c-0.889648 -0.480469 -1.84961 -0.954102 -2.80371 -1.41406l-0.978516 -0.448242c-0.671875 -0.307617 -1.33789 -0.601562 -2.03516 -0.896484l-0.876953 -0.371094
|
192 |
+
c-1.62598 -0.671875 -3.32812 -1.31152 -5.0752 -1.92578l-0.710938 -0.237305c-1.79199 -0.601562 -3.63477 -1.18359 -5.54883 -1.73438l-0.703125 -0.185547c-2.18262 -0.614258 -4.46777 -1.19043 -6.8291 -1.69629l-0.838867 -0.185547
|
193 |
+
c-2.38672 -0.511719 -4.83203 -0.998047 -7.36621 -1.41406l-0.774414 -0.134766c-2.04785 -0.332031 -4.12109 -0.626953 -6.2207 -0.889648l-1.08789 -0.133789c-2.125 -0.255859 -4.28809 -0.480469 -6.47656 -0.65918l-1.02441 -0.0966797
|
194 |
+
c-2.56641 -0.178711 -5.16504 -0.332031 -7.80176 -0.447266l-1.20898 -0.0449219c-2.1377 -0.0703125 -4.33984 -0.12207 -6.52832 -0.12207c-1.26758 0 -2.54102 0 -3.81445 0.0126953c-1.31836 0.0263672 -2.61719 0.0644531 -3.91016 0.109375
|
195 |
+
c-1.8623 0.0634766 -3.71875 0.140625 -5.54883 0.262695l-1.46582 0.0957031c-1.4209 0.115234 -2.82227 0.205078 -4.21777 0.338867l-1.43359 0.115234c-1.74023 0.15332 -3.44922 0.333008 -5.13867 0.538086l-1.03711 0.140625
|
196 |
+
c-1.44043 0.178711 -2.84766 0.383789 -4.25586 0.588867l-1.37598 0.198242c-1.72168 0.275391 -3.41797 0.563477 -5.08789 0.876953l-0.40332 0.0830078c-1.65137 0.313477 -3.27734 0.652344 -4.87695 1.01074l-1.1709 0.256836
|
197 |
+
c-1.79199 0.40918 -3.55273 0.857422 -5.28027 1.31152l-0.857422 0.237305c-2.02246 0.543945 -3.9873 1.12598 -5.8877 1.74707l-1.2041 0.40332c-0.780273 0.261719 -1.56152 0.537109 -2.31641 0.8125l-1.35645 0.499023
|
198 |
+
c-0.743164 0.275391 -1.47852 0.563477 -2.20215 0.851562l-1.26074 0.511719l-1.47168 0.633789l-1.4082 0.633789l-1.4209 0.665039l-1.33789 0.65918l-1.33105 0.691406l-1.26074 0.666016l-1.26074 0.729492l-1.17773 0.665039l-1.18359 0.761719l-1.08203 0.704102
|
199 |
+
l-1.08789 0.774414l-1.01074 0.729492l-1.00488 0.799805l-0.93457 0.749023l-0.915039 0.825195l-0.844727 0.761719l-0.813477 0.826172l-0.760742 0.787109l-0.691406 0.864258l-0.671875 0.8125l-0.601562 0.851562l-0.576172 0.837891l-0.511719 0.864258
|
200 |
+
l-0.5 0.850586l-0.383789 0.896484l-0.37793 0.870117l-0.293945 0.915039l-0.268555 0.864258l-0.198242 1.02441l-0.147461 0.761719c-0.0830078 0.614258 -0.12207 1.20898 -0.12207 1.82324l0.435547 -50.0098c0 -0.614258 0.0449219 -1.20898 0.121094 -1.81738
|
201 |
+
l0.102539 -0.543945l0.25 -1.24805l0.210938 -0.665039l0.352539 -1.11426l0.300781 -0.697266l0.473633 -1.0498l0.40332 -0.722656l0.569336 -0.999023l0.518555 -0.729492l0.65918 -0.94043l0.607422 -0.736328l0.78125 -0.953125l0.697266 -0.729492l0.864258 -0.889648
|
202 |
+
l0.806641 -0.723633l0.947266 -0.857422l0.895508 -0.729492l1.03711 -0.813477l0.998047 -0.722656l1.10742 -0.787109l1.10742 -0.716797l1.16406 -0.729492l1.20312 -0.698242l1.22949 -0.709961l1.29297 -0.68457l1.30566 -0.671875l1.40137 -0.672852
|
203 |
+
l1.32422 -0.632812l1.51074 -0.666016l1.38281 -0.588867l0.459961 -0.198242l0.845703 -0.326172c0.722656 -0.294922 1.43359 -0.583008 2.17578 -0.851562l1.36328 -0.505859c0.780273 -0.274414 1.54883 -0.537109 2.3418 -0.8125l0.896484 -0.307617l0.28125 -0.101562
|
204 |
+
c1.89453 -0.601562 3.85254 -1.17773 5.86914 -1.73438l0.505859 -0.154297l0.402344 -0.0957031c1.70312 -0.454102 3.45605 -0.889648 5.23535 -1.30566l0.499023 -0.134766l0.716797 -0.140625c1.60645 -0.333008 3.21289 -0.68457 4.87109 -0.998047
|
205 |
+
l0.300781 -0.0644531l0.0761719 -0.0126953c1.66406 -0.319336 3.35352 -0.607422 5.05664 -0.870117l0.652344 -0.12207l0.793945 -0.101562c1.37598 -0.211914 2.76465 -0.416016 4.17871 -0.588867l0.826172 -0.12793l0.268555 -0.0136719
|
206 |
+
c1.67676 -0.210938 3.37891 -0.396484 5.10059 -0.5625l0.53125 -0.0576172l0.959961 -0.0771484c1.37012 -0.134766 2.75195 -0.223633 4.14746 -0.333008l1.00488 -0.0761719l0.499023 -0.0263672c1.82422 -0.114258 3.67383 -0.198242 5.53613 -0.261719
|
207 |
+
l0.396484 -0.0126953c1.17188 -0.0449219 2.34277 -0.0644531 3.51367 -0.0839844c1.16504 -0.03125 2.29785 -0.03125 3.44336 -0.03125h0.383789c2.20215 0.0126953 4.37109 0.0576172 6.53418 0.133789l0.672852 0.0126953l0.517578 0.0263672
|
208 |
+
c2.65625 0.0957031 5.26074 0.249023 7.80859 0.454102l0.543945 0.0449219l0.486328 0.0380859c2.20117 0.198242 4.35156 0.416016 6.46387 0.65918l1.08789 0.134766c2.10547 0.261719 4.19238 0.563477 6.2207 0.889648l0.40332 0.0703125l0.473633 0.0957031
|
209 |
+
c2.48926 0.416016 4.92188 0.876953 7.27734 1.38867l0.844727 0.179688c2.34863 0.511719 4.60742 1.08105 6.80273 1.70898l0.441406 0.101562l0.300781 0.102539c1.88867 0.538086 3.73828 1.11426 5.49121 1.72168l0.761719 0.243164
|
210 |
+
c1.7666 0.621094 3.46875 1.28027 5.09473 1.95215l0.390625 0.134766l0.416016 0.191406c0.716797 0.300781 1.42676 0.614258 2.11816 0.941406l0.953125 0.43457c0.871094 0.40332 1.73438 0.838867 2.56055 1.26758l0.261719 0.134766l0.0517578 0.0253906
|
211 |
+
c1.48438 0.787109 2.86719 1.625 4.16016 2.45117l0.217773 0.12793l0.0703125 0.0634766c1.05566 0.678711 2.02832 1.40234 2.95605 2.125l0.358398 0.25l0.25 0.210938c0.838867 0.666016 1.62598 1.35059 2.34863 2.04199l0.102539 0.0830078l0.223633 0.275391
|
212 |
+
c0.588867 0.556641 1.13965 1.14551 1.63867 1.75293l0.275391 0.307617l0.160156 0.217773c0.563477 0.677734 1.0752 1.37598 1.50391 2.08008l0.0253906 0.03125l0.0703125 0.102539c0.410156 0.65332 0.755859 1.34473 1.0752 2.0166l0.134766 0.275391
|
213 |
+
l0.115234 0.293945c0.275391 0.652344 0.537109 1.35059 0.691406 2.02832l0.0761719 0.179688v0.0576172c0.210938 0.774414 0.333008 1.57422 0.397461 2.36133zM342.624 121.312l0.0253906 1.05664l-0.441406 50.0029l-0.0703125 -1.29883
|
214 |
+
c-0.0771484 -0.787109 -0.210938 -1.57422 -0.396484 -2.3623l-0.0771484 -0.236328c-0.185547 -0.671875 -0.422852 -1.35059 -0.710938 -2.02246l-0.236328 -0.563477c-0.313477 -0.677734 -0.652344 -1.33691 -1.05566 -2.00293l-0.109375 -0.160156
|
215 |
+
c-0.43457 -0.68457 -0.972656 -1.40137 -1.49707 -2.07324l-0.441406 -0.518555c-0.525391 -0.601562 -1.06934 -1.20312 -1.66406 -1.79199l-0.307617 -0.313477c-0.723633 -0.697266 -1.5293 -1.4082 -2.38086 -2.07422l-0.543945 -0.40918
|
216 |
+
c-0.953125 -0.742188 -1.93945 -1.47852 -3.02734 -2.16992l-0.185547 -0.133789c-1.33789 -0.864258 -2.77734 -1.70898 -4.30078 -2.50879c-0.889648 -0.486328 -1.84961 -0.972656 -2.80273 -1.4209l-0.979492 -0.448242
|
217 |
+
c-0.671875 -0.293945 -1.33789 -0.614258 -2.03516 -0.915039l-0.876953 -0.352539c-1.62598 -0.677734 -3.32812 -1.31152 -5.0752 -1.91992l-0.709961 -0.243164c-1.79199 -0.614258 -3.63574 -1.19043 -5.54883 -1.72754l-0.698242 -0.192383
|
218 |
+
c-2.18848 -0.607422 -4.47363 -1.18359 -6.83496 -1.70898l-0.838867 -0.178711c-2.38672 -0.518555 -4.83105 -0.992188 -7.36621 -1.4209l-0.774414 -0.134766c-2.04785 -0.326172 -4.12109 -0.620117 -6.2207 -0.882812l-1.08789 -0.134766
|
219 |
+
c-2.125 -0.249023 -4.28809 -0.479492 -6.47656 -0.652344l-1.02441 -0.0898438c-2.56641 -0.198242 -5.16406 -0.345703 -7.80176 -0.448242l-1.20898 -0.0634766c-2.1377 -0.0644531 -4.33984 -0.12207 -6.52832 -0.12207c-1.2666 0 -2.54102 0 -3.81445 0.0263672
|
220 |
+
c-1.31836 0.0126953 -2.61719 0.0576172 -3.91016 0.0957031c-1.8623 0.0634766 -3.71875 0.15332 -5.54883 0.275391l-1.47852 0.0185547c-1.4209 0.102539 -2.82227 0.211914 -4.21777 0.339844l-1.43359 0.12793c-1.74023 0.160156 -3.44922 0.358398 -5.13867 0.549805
|
221 |
+
l-1.03711 0.134766c-1.44043 0.198242 -2.84766 0.396484 -4.25586 0.608398l-1.37598 0.204102c-1.72168 0.275391 -3.41797 0.550781 -5.08789 0.871094l-0.40332 0.0761719c-1.65137 0.327148 -3.27734 0.65332 -4.87695 1.02441l-1.1709 0.249023
|
222 |
+
c-1.79199 0.416016 -3.55273 0.851562 -5.28027 1.3125l-0.857422 0.230469c-2.02246 0.549805 -3.9873 1.13867 -5.8877 1.75391l-1.2041 0.40918c-0.780273 0.262695 -1.56152 0.524414 -2.31641 0.8125l-1.35645 0.480469
|
223 |
+
c-0.743164 0.288086 -1.47852 0.582031 -2.20215 0.870117l-1.26074 0.511719l-1.47168 0.62793l-1.4082 0.626953l-1.4209 0.671875l-1.33789 0.652344l-1.33105 0.698242l-1.26074 0.665039l-1.26074 0.730469l-1.17773 0.677734l-1.18359 0.742188l-1.08203 0.710938
|
224 |
+
l-1.08789 0.780273l-1.01074 0.710938l-1.00488 0.8125l-0.93457 0.736328l-0.915039 0.825195l-0.844727 0.761719l-0.813477 0.838867l-0.760742 0.787109l-0.691406 0.850586l-0.671875 0.813477l-0.601562 0.850586l-0.576172 0.844727l-0.511719 0.876953
|
225 |
+
l-0.5 0.857422l-0.383789 0.889648l-0.37793 0.864258l-0.293945 0.915039l-0.268555 0.864258l-0.198242 1.01074l-0.147461 0.774414c-0.0830078 0.601562 -0.12207 1.20996 -0.12207 1.81836l0.435547 -50.0039c0 -0.614258 0.0449219 -1.20312 0.121094 -1.81738
|
226 |
+
l0.102539 -0.556641l0.25 -1.23535l0.210938 -0.665039l0.352539 -1.11426l0.300781 -0.709961l0.473633 -1.04297l0.40332 -0.723633l0.569336 -0.992188l0.518555 -0.735352l0.65918 -0.947266l0.607422 -0.736328l0.787109 -0.927734l0.698242 -0.723633
|
227 |
+
l0.863281 -0.889648l0.806641 -0.736328l0.947266 -0.850586l0.896484 -0.723633l1.03613 -0.819336l0.999023 -0.729492l1.10645 -0.761719l1.10742 -0.722656l1.16504 -0.736328l1.20312 -0.697266l1.22852 -0.710938l1.29297 -0.68457l1.30566 -0.665039
|
228 |
+
l1.40137 -0.685547l1.3252 -0.639648l1.51074 -0.666016l1.38184 -0.587891l0.460938 -0.199219l0.844727 -0.338867c0.723633 -0.28125 1.43359 -0.569336 2.17578 -0.844727l1.36328 -0.493164c0.78125 -0.28125 1.54883 -0.549805 2.34277 -0.832031l0.895508 -0.300781
|
229 |
+
l0.282227 -0.0761719c1.89453 -0.621094 3.85254 -1.20312 5.86816 -1.76074l0.505859 -0.140625l0.396484 -0.0830078c1.70312 -0.460938 3.45605 -0.895508 5.23535 -1.29883l0.499023 -0.134766l0.716797 -0.134766c1.60645 -0.351562 3.21289 -0.69043 4.87109 -1.01074
|
230 |
+
l0.300781 -0.0644531l0.0761719 -0.0126953c1.66406 -0.319336 3.35352 -0.607422 5.05664 -0.870117l0.652344 -0.121094l0.793945 -0.109375c1.37598 -0.210938 2.76465 -0.40332 4.17871 -0.588867l0.826172 -0.121094l0.268555 -0.0263672
|
231 |
+
c1.67676 -0.204102 3.37891 -0.396484 5.10059 -0.549805l0.53125 -0.0703125l0.959961 -0.0644531c1.37012 -0.12793 2.75195 -0.236328 4.14746 -0.326172l1.00488 -0.0771484l0.499023 -0.03125c1.82422 -0.109375 3.67383 -0.192383 5.53613 -0.256836
|
232 |
+
l0.396484 -0.0253906c1.17188 -0.0380859 2.34277 -0.0634766 3.51367 -0.0898438c1.16504 -0.0126953 2.29785 -0.0126953 3.44336 -0.0126953h0.383789c2.20215 0 4.37109 0.0644531 6.53418 0.12793l0.672852 0.0136719l0.517578 0.0380859
|
233 |
+
c2.65625 0.0957031 5.26074 0.249023 7.80859 0.454102l0.543945 0.0322266l0.486328 0.0507812c2.20117 0.192383 4.35156 0.40332 6.46387 0.65332l1.08789 0.133789c2.10547 0.269531 4.19238 0.557617 6.2207 0.90332l0.40332 0.0507812l0.473633 0.0898438
|
234 |
+
c2.48926 0.428711 4.92188 0.889648 7.27734 1.40137l0.844727 0.178711c2.34863 0.518555 4.60742 1.08203 6.80273 1.69629l0.448242 0.0957031l0.300781 0.12207c1.8877 0.524414 3.7373 1.10059 5.49121 1.70898l0.761719 0.249023
|
235 |
+
c1.7666 0.62793 3.46875 1.26758 5.09375 1.95215l0.390625 0.134766l0.40332 0.191406c0.716797 0.288086 1.43359 0.595703 2.11816 0.93457l0.959961 0.422852c0.864258 0.40918 1.72852 0.837891 2.56055 1.28027l0.261719 0.133789l0.0517578 0.0253906
|
236 |
+
c1.47852 0.787109 2.86035 1.61328 4.15332 2.45117l0.217773 0.12207l0.0771484 0.0703125c1.05566 0.671875 2.02832 1.38867 2.95605 2.1123l0.358398 0.243164l0.25 0.223633c0.838867 0.666016 1.62598 1.34375 2.34863 2.04199l0.102539 0.0888672l0.223633 0.256836
|
237 |
+
c0.588867 0.5625 1.13965 1.16406 1.63867 1.76562l0.275391 0.300781l0.160156 0.224609c0.563477 0.677734 1.0752 1.37598 1.50391 2.08594l0.0253906 0.0126953l0.0703125 0.12207c0.410156 0.652344 0.755859 1.33789 1.0752 2.01562l0.134766 0.262695
|
238 |
+
l0.115234 0.300781c0.275391 0.65918 0.537109 1.33789 0.691406 2.02246l0.0761719 0.192383v0.0439453c0.210938 0.78125 0.333008 1.5752 0.397461 2.3623zM342.624 192.947l0.0253906 0.998047l-0.43457 50.0166l-0.0771484 -1.2998
|
239 |
+
c-0.0576172 -0.607422 -0.172852 -1.21582 -0.300781 -1.81738c-3.66113 18.0225 -40.5762 32.7168 -85.5742 33.4082c-44.96 0.691406 -81.7344 -12.8262 -85.3701 -30.7012l-0.0898438 0.448242l-0.146484 0.774414
|
240 |
+
c-0.0830078 0.608398 -0.12207 1.21582 -0.12207 1.82422l0.0517578 -5.60059c-0.00683594 -0.133789 -0.0517578 -0.268555 -0.0517578 -0.40332c0 -0.15332 0.0517578 -0.293945 0.0576172 -0.441406l0.37793 -43.5645c0 -0.614258 0.0449219 -1.22266 0.121094 -1.81738
|
241 |
+
l0.102539 -0.550781l0.25 -1.24805l0.210938 -0.652344l0.352539 -1.12012l0.300781 -0.698242l0.473633 -1.04297l0.402344 -0.729492l0.570312 -0.998047l0.518555 -0.736328l0.65918 -0.93457l0.607422 -0.742188l0.787109 -0.93457l0.698242 -0.722656
|
242 |
+
l0.863281 -0.889648l0.806641 -0.736328l0.947266 -0.851562l0.896484 -0.722656l1.03613 -0.826172l0.999023 -0.716797l1.10645 -0.774414l1.10742 -0.716797l1.16504 -0.735352l1.20312 -0.704102l1.22852 -0.704102l1.29297 -0.68457l1.30566 -0.666016
|
243 |
+
l1.40137 -0.677734l1.3252 -0.62793l1.50977 -0.671875l1.38281 -0.588867l0.460938 -0.191406l0.844727 -0.345703c0.723633 -0.275391 1.43359 -0.563477 2.17578 -0.838867l1.36328 -0.499023c0.78125 -0.275391 1.54883 -0.550781 2.34277 -0.8125l0.895508 -0.313477
|
244 |
+
l0.282227 -0.0839844c1.89355 -0.614258 3.85254 -1.19043 5.86816 -1.74023l0.505859 -0.154297l0.40332 -0.0957031c1.70215 -0.473633 3.45605 -0.908203 5.23535 -1.31152l0.499023 -0.12207l0.716797 -0.140625c1.60645 -0.345703 3.21289 -0.68457 4.87012 -1.00488
|
245 |
+
l0.300781 -0.0703125l0.0771484 -0.0126953c1.66406 -0.313477 3.35352 -0.601562 5.05566 -0.864258l0.65332 -0.121094l0.792969 -0.12207c1.37598 -0.198242 2.76465 -0.396484 4.17969 -0.576172l0.825195 -0.115234l0.268555 -0.0380859
|
246 |
+
c1.67773 -0.198242 3.37988 -0.37793 5.10156 -0.537109l0.53125 -0.0644531l0.959961 -0.0830078c1.36914 -0.12207 2.75195 -0.217773 4.14648 -0.326172l1.00488 -0.0712891l0.499023 -0.0253906c1.82422 -0.12793 3.67383 -0.198242 5.53613 -0.261719
|
247 |
+
l0.397461 -0.0263672c1.1709 -0.0380859 2.3418 -0.0761719 3.51367 -0.0830078c1.16406 -0.0195312 2.29688 -0.0253906 3.44238 -0.0253906l0.384766 0.00585938c2.20117 0.00683594 4.37109 0.0517578 6.53418 0.128906h0.671875l0.518555 0.0380859
|
248 |
+
c2.65625 0.0957031 5.26074 0.262695 7.80762 0.460938l0.543945 0.0253906l0.486328 0.0507812c2.20215 0.199219 4.35254 0.410156 6.46484 0.671875l1.08789 0.128906c2.10547 0.261719 4.19141 0.5625 6.2207 0.889648l0.40918 0.0380859l0.473633 0.102539
|
249 |
+
c2.48926 0.421875 4.92188 0.895508 7.27734 1.40723l0.844727 0.154297c2.34863 0.524414 4.60742 1.10059 6.80273 1.71484l0.441406 0.115234l0.300781 0.102539c1.88867 0.537109 3.73828 1.11328 5.49121 1.71484l0.761719 0.25
|
250 |
+
c1.7666 0.626953 3.46875 1.27344 5.09473 1.93945l0.390625 0.133789l0.40918 0.192383c0.716797 0.293945 1.43359 0.607422 2.11816 0.93457l0.959961 0.421875c0.864258 0.422852 1.72852 0.851562 2.56055 1.28711l0.261719 0.12793l0.0517578 0.0380859
|
251 |
+
c1.47852 0.787109 2.86035 1.59961 4.15332 2.45117l0.217773 0.115234l0.0771484 0.0576172c1.05566 0.678711 2.02832 1.40137 2.95605 2.125l0.358398 0.249023l0.25 0.217773c0.838867 0.65918 1.62598 1.35059 2.34863 2.03516l0.102539 0.0898438l0.223633 0.249023
|
252 |
+
c0.588867 0.583008 1.13965 1.17188 1.63867 1.78613l0.275391 0.288086l0.160156 0.223633c0.563477 0.68457 1.0752 1.38867 1.50391 2.08691l0.0253906 0.0253906l0.0703125 0.102539c0.410156 0.671875 0.755859 1.35059 1.0752 2.02246l0.134766 0.275391
|
253 |
+
l0.115234 0.300781c0.275391 0.65918 0.537109 1.33105 0.691406 2.02148l0.0761719 0.186523v0.0439453c0.210938 0.78125 0.333008 1.5752 0.397461 2.375z" />
|
254 |
+
<glyph glyph-name="uniF114" unicode=""
|
255 |
+
d="M342.15 99.4111l0.0898438 1.29883l0.43457 -50.0029l-0.0380859 -1.03027l-0.0507812 -0.262695c-0.0644531 -0.799805 -0.199219 -1.58691 -0.397461 -2.37402v-0.0322266l-0.0761719 -0.172852c-0.154297 -0.68457 -0.416016 -1.36914 -0.691406 -2.03516
|
256 |
+
l-0.115234 -0.293945l-0.134766 -0.269531c-0.319336 -0.671875 -0.671875 -1.35645 -1.0752 -2.02148l-0.0703125 -0.102539l-0.0253906 -0.0263672c-0.428711 -0.709961 -0.94043 -1.40137 -1.50391 -2.08594l-0.15332 -0.217773l-0.275391 -0.306641
|
257 |
+
c-0.505859 -0.595703 -1.05664 -1.18457 -1.64453 -1.76074l-0.224609 -0.261719l-0.102539 -0.0898438c-0.722656 -0.68457 -1.50977 -1.37598 -2.34863 -2.04785l-0.249023 -0.211914l-0.352539 -0.249023c-0.93457 -0.716797 -1.90723 -1.44043 -2.96289 -2.1123
|
258 |
+
l-0.0771484 -0.0634766l-0.217773 -0.12793c-1.29297 -0.826172 -2.6748 -1.66406 -4.15332 -2.44531l-0.0507812 -0.0322266l-0.262695 -0.133789c-0.826172 -0.428711 -1.68359 -0.864258 -2.56055 -1.26758l-0.959961 -0.435547
|
259 |
+
c-0.68457 -0.306641 -1.40137 -0.620117 -2.11816 -0.933594l-0.40332 -0.185547l-0.383789 -0.134766c-1.62598 -0.68457 -3.32129 -1.33105 -5.09473 -1.94531l-0.760742 -0.25c-1.76074 -0.601562 -3.59082 -1.19043 -5.48535 -1.71484l-0.313477 -0.109375
|
260 |
+
l-0.435547 -0.108398c-2.18848 -0.614258 -4.4668 -1.19043 -6.80273 -1.70215l-0.851562 -0.185547c-2.36133 -0.512695 -4.78711 -0.979492 -7.27637 -1.38965l-0.473633 -0.0888672l-0.410156 -0.0644531c-2.03516 -0.338867 -4.1084 -0.626953 -6.21387 -0.889648
|
261 |
+
l-1.08789 -0.133789c-2.1123 -0.25 -4.2627 -0.473633 -6.46387 -0.65332l-0.486328 -0.0507812l-0.544922 -0.0390625c-2.55957 -0.198242 -5.15137 -0.345703 -7.80762 -0.447266l-0.518555 -0.0263672l-0.665039 -0.0126953
|
262 |
+
c-2.15723 -0.0761719 -4.32715 -0.121094 -6.53516 -0.133789l-0.389648 -0.00683594c-1.13965 0 -2.27832 0.00683594 -3.4375 0.0322266c-1.1709 0.0195312 -2.3418 0.0380859 -3.51367 0.0898438l-0.396484 0.0126953
|
263 |
+
c-1.8623 0.0634766 -3.71191 0.140625 -5.53613 0.261719l-0.499023 0.0263672l-1.00488 0.0761719c-1.39551 0.102539 -2.77734 0.198242 -4.14746 0.327148l-0.959961 0.0761719l-0.53125 0.0644531c-1.7207 0.160156 -3.41699 0.338867 -5.10059 0.549805
|
264 |
+
l-0.268555 0.0263672l-0.825195 0.121094c-1.41504 0.185547 -2.80371 0.383789 -4.17969 0.588867l-0.793945 0.108398l-0.652344 0.115234c-1.70215 0.262695 -3.3916 0.550781 -5.05566 0.876953h-0.0771484l-0.300781 0.0771484
|
265 |
+
c-1.65723 0.313477 -3.26367 0.646484 -4.87012 0.998047l-0.716797 0.134766l-0.5 0.12793c-1.77832 0.421875 -3.53223 0.851562 -5.23438 1.31152l-0.40332 0.0898438l-0.505859 0.160156c-2.02246 0.543945 -3.98047 1.12012 -5.86914 1.73438l-0.28125 0.0957031
|
266 |
+
l-0.896484 0.307617c-0.792969 0.275391 -1.56152 0.537109 -2.3418 0.8125l-1.36328 0.505859c-0.736328 0.268555 -1.44629 0.556641 -2.17578 0.844727l-0.844727 0.326172l-0.460938 0.211914l-1.38281 0.587891l-1.50977 0.666016l-1.3252 0.639648l-1.40137 0.666016
|
267 |
+
l-1.30566 0.678711l-1.29297 0.677734l-1.22852 0.704102l-1.20312 0.710938l-1.16504 0.722656l-1.10742 0.723633l-1.10742 0.774414l-0.998047 0.722656l-1.03711 0.826172l-0.895508 0.722656l-0.947266 0.851562l-0.806641 0.729492l-0.864258 0.882812
|
268 |
+
l-0.697266 0.736328l-0.787109 0.927734l-0.608398 0.736328l-0.65918 0.947266l-0.518555 0.736328l-0.569336 0.985352l-0.40332 0.729492l-0.473633 1.0498l-0.300781 0.697266l-0.351562 1.11328l-0.210938 0.666016l-0.25 1.24121l-0.102539 0.543945
|
269 |
+
c-0.0830078 0.615234 -0.121094 1.19727 -0.121094 1.81836l-0.435547 50.0029c0 -0.601562 0.0380859 -1.20312 0.12207 -1.81152l0.146484 -0.767578l0.198242 -1.02441l0.269531 -0.870117l0.293945 -0.902344l0.37793 -0.876953l0.383789 -0.889648l0.499023 -0.850586
|
270 |
+
l0.511719 -0.876953l0.576172 -0.832031l0.601562 -0.851562l0.671875 -0.8125l0.691406 -0.871094l0.761719 -0.787109l0.8125 -0.825195l0.845703 -0.754883l0.915039 -0.832031l0.93457 -0.743164l1.00391 -0.799805l1.01172 -0.729492l1.08789 -0.774414
|
271 |
+
l1.08203 -0.697266l1.18359 -0.761719l1.17773 -0.671875l1.26074 -0.736328l1.26074 -0.665039l1.33105 -0.685547l1.33789 -0.65918l1.4209 -0.665039l1.40723 -0.640625l1.47266 -0.639648l1.26074 -0.499023c0.722656 -0.300781 1.45312 -0.588867 2.20117 -0.864258
|
272 |
+
l1.35742 -0.505859c0.754883 -0.261719 1.5293 -0.537109 2.31641 -0.799805l1.20312 -0.40332c1.90137 -0.607422 3.86621 -1.19043 5.8877 -1.74023l0.858398 -0.237305c1.72168 -0.460938 3.4873 -0.902344 5.2793 -1.31152l1.17188 -0.262695
|
273 |
+
c1.59961 -0.345703 3.22559 -0.697266 4.87695 -1.01074l0.40918 -0.102539c1.66406 -0.313477 3.36621 -0.601562 5.08789 -0.876953l1.37598 -0.210938c1.4082 -0.199219 2.81641 -0.416016 4.25586 -0.588867l1.03711 -0.134766
|
274 |
+
c1.68945 -0.205078 3.39844 -0.390625 5.13867 -0.537109l1.43359 -0.134766c1.39551 -0.12793 2.79688 -0.223633 4.21777 -0.333008l1.46582 -0.0957031c1.83008 -0.115234 3.68652 -0.198242 5.54883 -0.262695c1.29297 -0.0380859 2.5918 -0.0761719 3.91016 -0.102539
|
275 |
+
c1.28027 -0.0126953 2.55371 -0.0126953 3.81445 -0.0126953c2.19531 0 4.38379 0.0517578 6.53418 0.115234l1.2041 0.0449219c2.63672 0.102539 5.24707 0.268555 7.80762 0.454102l1.02441 0.0898438c2.18848 0.192383 4.33887 0.40332 6.46387 0.666016
|
276 |
+
l1.10059 0.133789c2.09863 0.262695 4.17871 0.556641 6.21387 0.896484l0.774414 0.12793c2.53516 0.428711 4.98633 0.902344 7.37305 1.41406l0.826172 0.185547c2.36133 0.512695 4.63965 1.08203 6.83496 1.69629l0.704102 0.185547
|
277 |
+
c1.91309 0.550781 3.75684 1.13281 5.54199 1.73438l0.710938 0.237305c1.75293 0.614258 3.44922 1.26074 5.0752 1.92578l0.875977 0.37793c0.698242 0.293945 1.37012 0.588867 2.03516 0.895508l0.986328 0.448242c0.959961 0.473633 1.90039 0.93457 2.80957 1.41406
|
278 |
+
c1.52246 0.806641 2.96289 1.6582 4.28809 2.52246l0.198242 0.12793c1.08789 0.697266 2.08008 1.42676 3.02734 2.16309l0.537109 0.416016c0.851562 0.68457 1.6582 1.37598 2.3877 2.08594l0.300781 0.300781c0.594727 0.595703 1.13867 1.19043 1.66406 1.79883
|
279 |
+
l0.441406 0.524414c0.53125 0.678711 1.06836 1.37598 1.49121 2.06738l0.115234 0.15332c0.396484 0.666016 0.735352 1.33789 1.0625 2.00391l0.236328 0.575195c0.288086 0.65332 0.525391 1.33789 0.710938 2.02246l0.0761719 0.230469
|
280 |
+
c0.192383 0.78125 0.313477 1.57422 0.390625 2.36816zM342.15 171.053l0.0898438 1.33105l0.43457 -50.0029l-0.0380859 -1.03027l-0.0507812 -0.275391c-0.0644531 -0.787109 -0.199219 -1.58105 -0.397461 -2.36133v-0.0449219l-0.0761719 -0.185547
|
281 |
+
c-0.154297 -0.68457 -0.416016 -1.35742 -0.691406 -2.02246l-0.115234 -0.300781l-0.134766 -0.262695c-0.319336 -0.68457 -0.671875 -1.35645 -1.0752 -2.02246l-0.0703125 -0.115234l-0.0253906 -0.0253906c-0.428711 -0.697266 -0.94043 -1.40137 -1.50391 -2.08594
|
282 |
+
l-0.15332 -0.211914l-0.275391 -0.300781c-0.505859 -0.594727 -1.05664 -1.19629 -1.64453 -1.77246l-0.224609 -0.255859l-0.102539 -0.0830078c-0.722656 -0.704102 -1.50977 -1.37598 -2.34863 -2.04883l-0.249023 -0.223633l-0.352539 -0.236328
|
283 |
+
c-0.93457 -0.723633 -1.90723 -1.44727 -2.96289 -2.125l-0.0771484 -0.0644531l-0.217773 -0.115234c-1.29297 -0.837891 -2.6748 -1.66406 -4.15332 -2.45117l-0.0507812 -0.0380859l-0.262695 -0.12793c-0.826172 -0.435547 -1.68359 -0.864258 -2.56055 -1.28027
|
284 |
+
l-0.959961 -0.428711c-0.68457 -0.326172 -1.40137 -0.633789 -2.11816 -0.93457l-0.40332 -0.178711l-0.383789 -0.134766c-1.62598 -0.697266 -3.32129 -1.3252 -5.09473 -1.95215l-0.760742 -0.249023c-1.76074 -0.601562 -3.59082 -1.18457 -5.48535 -1.70898
|
285 |
+
l-0.313477 -0.12207l-0.435547 -0.102539c-2.18848 -0.614258 -4.4668 -1.17676 -6.80273 -1.69531l-0.851562 -0.179688c-2.36133 -0.511719 -4.78711 -0.992188 -7.27637 -1.40137l-0.473633 -0.0898438l-0.410156 -0.0507812
|
286 |
+
c-2.03516 -0.339844 -4.1084 -0.633789 -6.21387 -0.902344l-1.08789 -0.134766c-2.1123 -0.249023 -4.2627 -0.473633 -6.46387 -0.652344l-0.486328 -0.0517578l-0.544922 -0.0322266c-2.55957 -0.204102 -5.15137 -0.351562 -7.80762 -0.454102l-0.518555 -0.0380859
|
287 |
+
l-0.665039 -0.0126953c-2.15723 -0.0644531 -4.32715 -0.12793 -6.53516 -0.12793h-0.389648c-1.13965 0 -2.27832 0 -3.4375 0.0126953c-1.1709 0.0253906 -2.3418 0.0576172 -3.51367 0.0898438l-0.396484 0.0253906
|
288 |
+
c-1.8623 0.0634766 -3.71191 0.146484 -5.53613 0.255859l-0.499023 0.0322266l-1.00488 0.0761719c-1.39551 0.0898438 -2.77734 0.198242 -4.14746 0.327148l-0.959961 0.0703125l-0.53125 0.0634766c-1.7207 0.15332 -3.41699 0.345703 -5.10059 0.550781
|
289 |
+
l-0.268555 0.0322266l-0.825195 0.115234c-1.41504 0.185547 -2.80371 0.376953 -4.17969 0.587891l-0.793945 0.115234l-0.652344 0.115234c-1.70215 0.262695 -3.3916 0.557617 -5.05566 0.871094l-0.0771484 0.0126953l-0.300781 0.0703125
|
290 |
+
c-1.65723 0.313477 -3.26367 0.633789 -4.87012 1.00488l-0.716797 0.133789l-0.5 0.134766c-1.77832 0.40332 -3.53223 0.838867 -5.23438 1.29883l-0.40332 0.109375l-0.505859 0.140625c-2.02246 0.550781 -3.98047 1.12012 -5.86914 1.75391l-0.28125 0.0761719
|
291 |
+
l-0.896484 0.307617c-0.792969 0.275391 -1.56152 0.543945 -2.3418 0.825195l-1.36328 0.499023c-0.736328 0.275391 -1.44629 0.557617 -2.17578 0.838867l-0.844727 0.345703l-0.460938 0.192383l-1.38281 0.587891l-1.50977 0.666016l-1.3252 0.639648
|
292 |
+
l-1.40137 0.685547l-1.30566 0.665039l-1.29297 0.68457l-1.22852 0.710938l-1.20312 0.697266l-1.16504 0.736328l-1.10742 0.722656l-1.10742 0.761719l-0.998047 0.729492l-1.03711 0.819336l-0.895508 0.723633l-0.947266 0.850586l-0.806641 0.736328
|
293 |
+
l-0.864258 0.889648l-0.697266 0.723633l-0.787109 0.927734l-0.608398 0.736328l-0.65918 0.947266l-0.518555 0.735352l-0.569336 0.992188l-0.40332 0.723633l-0.473633 1.04883l-0.300781 0.704102l-0.351562 1.11426l-0.210938 0.665039l-0.25 1.24219
|
294 |
+
l-0.102539 0.549805c-0.0830078 0.614258 -0.121094 1.20312 -0.121094 1.81738l-0.435547 50.0098c0 -0.614258 0.0380859 -1.22266 0.12207 -1.82422l0.146484 -0.774414l0.198242 -1.01074l0.269531 -0.864258l0.293945 -0.915039l0.37793 -0.864258l0.383789 -0.889648
|
295 |
+
l0.499023 -0.850586l0.511719 -0.883789l0.576172 -0.837891l0.601562 -0.857422l0.671875 -0.813477l0.691406 -0.850586l0.761719 -0.787109l0.8125 -0.838867l0.845703 -0.761719l0.915039 -0.825195l0.93457 -0.736328l1.00391 -0.8125l1.01172 -0.710938
|
296 |
+
l1.08789 -0.780273l1.08203 -0.704102l1.18359 -0.749023l1.17773 -0.678711l1.26074 -0.729492l1.26074 -0.665039l1.33105 -0.698242l1.33789 -0.652344l1.4209 -0.671875l1.40723 -0.621094l1.47266 -0.633789l1.26074 -0.511719
|
297 |
+
c0.722656 -0.288086 1.45312 -0.576172 2.20117 -0.864258l1.36328 -0.492188c0.755859 -0.288086 1.53027 -0.550781 2.31738 -0.813477l1.20312 -0.402344c1.90039 -0.602539 3.86523 -1.2041 5.8877 -1.75391l0.857422 -0.237305
|
298 |
+
c1.72168 -0.459961 3.48828 -0.895508 5.28027 -1.31152l1.1709 -0.25c1.60059 -0.358398 3.22559 -0.697266 4.87695 -1.02344l0.40332 -0.0771484c1.66406 -0.320312 3.36621 -0.594727 5.08789 -0.870117l1.37598 -0.205078
|
299 |
+
c1.4082 -0.210938 2.81641 -0.421875 4.25586 -0.608398l1.03711 -0.133789c1.68945 -0.192383 3.39844 -0.390625 5.13867 -0.550781l1.43359 -0.12793c1.39551 -0.12793 2.79688 -0.236328 4.21777 -0.338867l1.46582 -0.0898438
|
300 |
+
c1.83008 -0.121094 3.68652 -0.210938 5.54883 -0.275391c1.29297 -0.0380859 2.5918 -0.0830078 3.91016 -0.0957031c1.28027 -0.0253906 2.55371 -0.0253906 3.81445 -0.0253906c2.19531 0 4.38379 0.0507812 6.53418 0.121094l1.2041 0.0644531
|
301 |
+
c2.63672 0.0898438 5.24707 0.249023 7.80762 0.448242l1.02441 0.0888672c2.18848 0.192383 4.33887 0.40332 6.46387 0.65332l1.10059 0.133789c2.09863 0.262695 4.17871 0.550781 6.21387 0.883789l0.774414 0.133789c2.53516 0.442383 4.98633 0.902344 7.37305 1.4209
|
302 |
+
l0.826172 0.179688c2.36133 0.524414 4.63965 1.10059 6.83496 1.70898l0.704102 0.191406c1.91309 0.538086 3.75684 1.11426 5.54199 1.72852l0.710938 0.243164c1.75293 0.607422 3.44922 1.24805 5.0752 1.91992l0.875977 0.351562
|
303 |
+
c0.698242 0.300781 1.37012 0.621094 2.03516 0.915039l0.986328 0.448242c0.959961 0.467773 1.90039 0.93457 2.80957 1.4209c1.52246 0.799805 2.96289 1.64453 4.28809 2.50879l0.198242 0.134766c1.08789 0.704102 2.08008 1.42676 3.02734 2.16895l0.537109 0.410156
|
304 |
+
c0.851562 0.665039 1.6582 1.37598 2.3877 2.07324l0.300781 0.313477c0.594727 0.588867 1.13867 1.17773 1.66406 1.79199l0.441406 0.518555c0.53125 0.671875 1.06836 1.38867 1.49121 2.07422l0.115234 0.15918c0.396484 0.666016 0.735352 1.33203 1.0625 2.00391
|
305 |
+
l0.236328 0.5625c0.288086 0.671875 0.525391 1.35059 0.710938 2.02246l0.0761719 0.237305c0.192383 0.787109 0.313477 1.57422 0.390625 2.36133zM342.15 242.694l0.0703125 1.31836l0.441406 -50.0156l-0.0380859 -1.03027l-0.0576172 -0.256836
|
306 |
+
c-0.0644531 -0.805664 -0.192383 -1.59277 -0.390625 -2.37402v-0.0253906l-0.0761719 -0.185547c-0.160156 -0.68457 -0.410156 -1.35059 -0.698242 -2.0166l-0.108398 -0.306641l-0.140625 -0.275391c-0.313477 -0.678711 -0.671875 -1.35059 -1.0752 -2.01562
|
307 |
+
l-0.0644531 -0.109375l-0.0253906 -0.0253906c-0.435547 -0.704102 -0.947266 -1.40137 -1.51074 -2.08008l-0.146484 -0.223633l-0.275391 -0.288086c-0.505859 -0.608398 -1.0625 -1.19727 -1.63867 -1.78613l-0.236328 -0.249023l-0.102539 -0.0898438
|
308 |
+
c-0.723633 -0.691406 -1.51074 -1.36914 -2.34961 -2.03516l-0.249023 -0.223633l-0.352539 -0.25c-0.927734 -0.723633 -1.90039 -1.44043 -2.95605 -2.125l-0.0771484 -0.0507812l-0.217773 -0.12793c-1.29297 -0.844727 -2.6748 -1.6582 -4.16016 -2.44531
|
309 |
+
l-0.0507812 -0.0380859l-0.262695 -0.134766c-0.825195 -0.428711 -1.67676 -0.850586 -2.55957 -1.28613l-0.954102 -0.416016c-0.69043 -0.320312 -1.40137 -0.633789 -2.11816 -0.93457l-0.40332 -0.185547l-0.390625 -0.133789
|
310 |
+
c-1.625 -0.678711 -3.32715 -1.3125 -5.09375 -1.93945l-0.761719 -0.25c-1.75391 -0.601562 -3.59082 -1.17773 -5.49121 -1.71484l-0.300781 -0.102539l-0.441406 -0.115234c-2.18945 -0.614258 -4.46094 -1.19043 -6.80371 -1.71484l-0.844727 -0.154297
|
311 |
+
c-2.35547 -0.511719 -4.78711 -0.998047 -7.27637 -1.40137l-0.473633 -0.108398l-0.40332 -0.0517578c-2.04199 -0.326172 -4.11523 -0.620117 -6.2207 -0.889648l-1.08789 -0.12793c-2.1123 -0.261719 -4.2627 -0.486328 -6.46484 -0.665039l-0.486328 -0.0576172
|
312 |
+
l-0.543945 -0.0263672c-2.56641 -0.191406 -5.15137 -0.344727 -7.80762 -0.454102l-0.518555 -0.0449219h-0.671875c-2.15723 -0.0761719 -4.32617 -0.115234 -6.53418 -0.12793l-0.383789 -0.00585938c-1.14648 0 -2.28516 0.00585938 -3.44336 0.03125
|
313 |
+
c-1.17188 0 -2.34277 0.0390625 -3.51367 0.0771484l-0.397461 0.0253906c-1.8623 0.0644531 -3.71191 0.134766 -5.53516 0.262695l-0.5 0.0253906l-1.00391 0.0703125c-1.39551 0.109375 -2.77832 0.205078 -4.14746 0.333008l-0.959961 0.0771484l-0.53125 0.0634766
|
314 |
+
c-1.72168 0.160156 -3.41797 0.339844 -5.10059 0.538086l-0.269531 0.0380859l-0.825195 0.115234c-1.41406 0.179688 -2.80371 0.383789 -4.17969 0.576172l-0.792969 0.121094l-0.65332 0.12207c-1.70215 0.262695 -3.3916 0.550781 -5.05566 0.864258
|
315 |
+
l-0.0771484 0.0126953l-0.300781 0.0703125c-1.65723 0.320312 -3.26367 0.652344 -4.87012 1.00488l-0.716797 0.147461l-0.499023 0.114258c-1.7793 0.410156 -3.5332 0.845703 -5.23535 1.3125l-0.40332 0.0957031l-0.505859 0.154297
|
316 |
+
c-2.02246 0.537109 -3.98047 1.11328 -5.86816 1.74023l-0.282227 0.0830078l-0.895508 0.313477c-0.793945 0.262695 -1.56152 0.538086 -2.34277 0.813477l-1.36328 0.499023c-0.735352 0.275391 -1.44629 0.563477 -2.17578 0.837891l-0.844727 0.345703
|
317 |
+
l-0.460938 0.192383l-1.38184 0.588867l-1.51074 0.671875l-1.3252 0.633789l-1.40137 0.678711l-1.30566 0.665039l-1.29297 0.678711l-1.22852 0.704102l-1.20312 0.704102l-1.16504 0.735352l-1.10742 0.716797l-1.10645 0.774414l-0.999023 0.716797l-1.03613 0.832031
|
318 |
+
l-0.896484 0.716797l-0.947266 0.851562l-0.806641 0.735352l-0.863281 0.896484l-0.698242 0.716797l-0.787109 0.93457l-0.607422 0.742188l-0.65918 0.93457l-0.518555 0.736328l-0.569336 0.998047l-0.40332 0.729492l-0.473633 1.04297l-0.300781 0.698242
|
319 |
+
l-0.352539 1.11914l-0.210938 0.65332l-0.25 1.24805l-0.102539 0.549805c-0.0830078 0.602539 -0.121094 1.2041 -0.121094 1.81836l-0.37793 43.5645c-0.00585938 0.147461 -0.0576172 0.294922 -0.0576172 0.441406c0 0.134766 0.0517578 0.269531 0.0517578 0.40332
|
320 |
+
l-0.0517578 5.60059c0 -0.608398 0.0390625 -1.2168 0.12207 -1.82422l0.147461 -0.774414l0.0888672 -0.448242c3.63574 17.875 40.4102 31.3916 85.3701 30.7012c44.998 -0.691406 81.9131 -15.3857 85.5742 -33.4082c0.12793 0.607422 0.243164 1.20898 0.300781 1.81738
|
321 |
+
z" />
|
322 |
+
<glyph glyph-name="uniF11B" unicode=""
|
323 |
+
d="M404.666 185.6c4.95996 0 7.57715 -1.06836 7.8457 -2.82227c0 -0.524414 -0.93457 -2.98828 -2.79688 -7.0459l-56.0508 -111.731h-226.374l57.3184 112.378c1.94531 3.87207 3.83984 5.97754 5.69531 7.07812c1.8623 1.08789 5.22949 2.14355 10.1318 2.14355h204.23z
|
324 |
+
M175.584 203.872c-2.18848 -1.24805 -6.8418 -5.22852 -10.8027 -12.9092l-55.9814 -105.549v133.626c0 3.96191 2.21484 7.41113 3.52637 8.64648c1.31836 1.22266 5.55566 2.71387 9.60645 2.71387h7.85254c5.65137 0 9.29297 -0.179688 10.9385 0.920898
|
325 |
+
c1.65039 1.08203 3.1543 3.33496 4.49902 8.12793l1.52246 6.11914c1.01172 3.63477 2.43262 6.61719 4.29492 7.70508c1.8623 1.00488 5.49121 2.72656 10.8799 2.72656h46.8291c4.7998 0 7.89746 -1.59375 9.29297 -2.55371
|
326 |
+
c1.39453 -0.972656 2.64258 -4.63379 3.7373 -8.76172l1.5166 -5.59375c1.17773 -4.81836 2.70117 -7.25098 4.55664 -8.17285c1.85645 -0.94043 6.74609 -0.517578 14.6758 -0.517578h87.9355c6.33594 0 8.73633 -4.98633 8.73633 -11.4824v-14.1182h-146.534
|
327 |
+
c-9.19043 0 -14.8809 0.352539 -17.082 -0.927734z" />
|
328 |
+
</font>
|
329 |
+
</defs></svg>
|
Binary file
|
Binary file
|
@@ -1,12 +1,13 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
11 |
</g>
|
12 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M40.412,29.998c-2.914,0-5.285,2.371-5.285,5.285v3.521h10.57v-3.521
|
8 |
+
C45.697,32.369,43.326,29.998,40.412,29.998z"/>
|
9 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M53.799,63.182c0,1.516-1.229,2.746-2.746,2.746H29.42
|
10 |
+
c-1.516,0-2.744-1.23-2.744-2.746V41.549c0-1.516,1.229-2.746,2.744-2.746h1.48v-3.521c0-5.245,4.268-9.512,9.512-9.512
|
11 |
+
c5.246,0,9.514,4.267,9.514,9.512v3.521h1.127c1.518,0,2.746,1.23,2.746,2.746V63.182z"/>
|
12 |
</g>
|
13 |
</svg>
|
@@ -1,11 +1,16 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
10 |
</g>
|
11 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<g>
|
8 |
+
<path fill="#333333" d="M53.799,63.182c0,1.516-1.229,2.746-2.746,2.746H29.42c-1.516,0-2.744-1.23-2.744-2.746V41.549
|
9 |
+
c0-1.516,1.229-2.746,2.744-2.746h21.633c1.518,0,2.746,1.23,2.746,2.746V63.182z"/>
|
10 |
+
<g>
|
11 |
+
<path fill="#333333" d="M49.926,45.672h-4.229V35.283c0-2.914-2.371-5.285-5.285-5.285s-5.285,2.371-5.285,5.285v8.98H30.9v-8.98
|
12 |
+
c0-5.245,4.268-9.512,9.512-9.512c5.246,0,9.514,4.267,9.514,9.512V45.672z"/>
|
13 |
+
</g>
|
14 |
+
</g>
|
15 |
</g>
|
16 |
</svg>
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
+
<g>
|
7 |
+
<polygon fill="#333333" points="49.764,43.404 30.873,43.404 30.873,40.885 26.174,45.586 30.873,50.285 30.873,47.768
|
8 |
+
49.764,47.768 49.764,50.285 54.463,45.586 49.764,40.885 "/>
|
9 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M60.695,57.996c0,1.754-1.42,3.175-3.174,3.175h-14.75
|
10 |
+
c0.196,1.202,1.188,4.479,6.094,4.479v1.57h-7.879h-1.679h-7.88v-1.57c4.905,0,5.895-3.276,6.094-4.479H22.308
|
11 |
+
c-1.753,0-3.173-1.421-3.173-3.175V33.37c0-1.753,1.42-3.174,3.173-3.174h35.215c1.752,0,3.172,1.42,3.172,3.174V57.996
|
12 |
+
L60.695,57.996z"/>
|
13 |
+
</g>
|
14 |
+
</svg>
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
+
<g>
|
7 |
+
<g>
|
8 |
+
<path fill="#333333" d="M57.521,30.196H22.308c-1.753,0-3.173,1.42-3.173,3.174v24.626c0,1.754,1.42,3.175,3.173,3.175h15.214
|
9 |
+
c-0.199,1.202-1.188,4.479-6.094,4.479v1.57h7.88h1.678h7.88v-1.57c-4.905,0-5.896-3.276-6.095-4.479h14.752
|
10 |
+
c1.752,0,3.172-1.421,3.172-3.175V33.37C60.695,31.617,59.275,30.196,57.521,30.196z M49.764,50.285v-2.518H30.873v2.518
|
11 |
+
l-4.699-4.699l4.699-4.701v2.52h18.891v-2.52l4.699,4.701L49.764,50.285z"/>
|
12 |
+
</g>
|
13 |
+
</g>
|
14 |
+
</svg>
|
@@ -1,12 +1,102 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
</g>
|
12 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M53.535,62.24l-0.008,0.041
|
8 |
+
c-0.01,0.123-0.029,0.248-0.062,0.369v0.009l-0.012,0.028c-0.024,0.106-0.065,0.215-0.108,0.317l-0.018,0.046l-0.021,0.043
|
9 |
+
c-0.05,0.105-0.104,0.213-0.168,0.315l-0.011,0.016l-0.004,0.005c-0.067,0.11-0.147,0.219-0.235,0.325l-0.025,0.034l-0.043,0.048
|
10 |
+
c-0.078,0.095-0.164,0.187-0.256,0.274l-0.035,0.043l-0.016,0.013c-0.113,0.108-0.236,0.215-0.367,0.319l-0.039,0.033l-0.056,0.039
|
11 |
+
c-0.145,0.113-0.297,0.226-0.462,0.332l-0.011,0.01l-0.034,0.02c-0.202,0.129-0.418,0.26-0.65,0.383l-0.008,0.004l-0.041,0.021
|
12 |
+
c-0.129,0.067-0.264,0.135-0.4,0.198l-0.149,0.068c-0.108,0.051-0.219,0.1-0.331,0.147L49.9,65.77l-0.061,0.021
|
13 |
+
c-0.254,0.105-0.52,0.208-0.796,0.305l-0.119,0.038c-0.274,0.095-0.563,0.185-0.858,0.269l-0.047,0.016l-0.069,0.016
|
14 |
+
c-0.343,0.098-0.696,0.187-1.063,0.267l-0.132,0.028c-0.368,0.08-0.748,0.152-1.137,0.217l-0.074,0.015l-0.063,0.011
|
15 |
+
c-0.317,0.051-0.643,0.098-0.972,0.139l-0.17,0.021c-0.33,0.038-0.666,0.072-1.01,0.103l-0.076,0.006l-0.085,0.007
|
16 |
+
c-0.398,0.032-0.805,0.056-1.22,0.071l-0.081,0.004l-0.105,0.002c-0.338,0.012-0.677,0.019-1.021,0.021h-0.06
|
17 |
+
c-0.179,0-0.356,0-0.538-0.005c-0.183-0.003-0.366-0.006-0.549-0.013l-0.062-0.002c-0.291-0.01-0.58-0.023-0.865-0.041
|
18 |
+
l-0.078-0.004l-0.157-0.012c-0.218-0.017-0.434-0.031-0.648-0.052l-0.15-0.012l-0.083-0.009c-0.269-0.026-0.535-0.055-0.797-0.088
|
19 |
+
l-0.042-0.002l-0.129-0.02c-0.221-0.027-0.438-0.059-0.653-0.092l-0.124-0.016l-0.102-0.019c-0.266-0.041-0.53-0.086-0.79-0.136
|
20 |
+
l-0.012-0.002l-0.047-0.01c-0.259-0.049-0.51-0.104-0.761-0.156l-0.112-0.022l-0.078-0.021c-0.278-0.065-0.552-0.133-0.818-0.204
|
21 |
+
l-0.063-0.015l-0.079-0.024c-0.315-0.087-0.621-0.177-0.917-0.271l-0.044-0.016l-0.14-0.048c-0.124-0.043-0.244-0.084-0.366-0.127
|
22 |
+
l-0.213-0.079c-0.116-0.042-0.227-0.087-0.34-0.133l-0.132-0.051l-0.072-0.031l-0.216-0.092l-0.236-0.104l-0.207-0.099
|
23 |
+
l-0.219-0.105l-0.204-0.105l-0.202-0.107l-0.192-0.111l-0.188-0.109l-0.182-0.114l-0.173-0.112l-0.173-0.123l-0.156-0.113
|
24 |
+
l-0.162-0.127l-0.14-0.114l-0.148-0.134l-0.126-0.113l-0.135-0.139l-0.109-0.114L27.43,63.43l-0.095-0.115l-0.103-0.147
|
25 |
+
l-0.081-0.114l-0.089-0.156l-0.063-0.113l-0.074-0.164l-0.047-0.109l-0.055-0.174l-0.033-0.104l-0.039-0.195l-0.016-0.085
|
26 |
+
c-0.012-0.095-0.019-0.188-0.019-0.284l-0.068-7.814c0,0.096,0.006,0.189,0.019,0.285l0.023,0.119l0.031,0.16l0.042,0.135
|
27 |
+
l0.046,0.143l0.059,0.136l0.06,0.14l0.078,0.133l0.08,0.135l0.09,0.131l0.094,0.133l0.105,0.127l0.108,0.135l0.119,0.123
|
28 |
+
l0.127,0.129l0.132,0.119l0.143,0.129l0.146,0.117l0.157,0.125l0.158,0.114l0.17,0.121l0.169,0.11l0.185,0.119l0.184,0.104
|
29 |
+
l0.197,0.114l0.197,0.104l0.208,0.108l0.209,0.103l0.222,0.104l0.22,0.099l0.23,0.099l0.197,0.08
|
30 |
+
c0.113,0.045,0.228,0.09,0.344,0.133l0.212,0.078c0.118,0.043,0.24,0.086,0.362,0.127l0.188,0.063
|
31 |
+
c0.297,0.097,0.604,0.188,0.92,0.273l0.134,0.037c0.27,0.071,0.545,0.141,0.825,0.205l0.183,0.04
|
32 |
+
c0.25,0.056,0.504,0.109,0.762,0.158l0.063,0.013c0.261,0.049,0.526,0.094,0.795,0.137l0.215,0.031
|
33 |
+
c0.22,0.032,0.44,0.064,0.665,0.092l0.162,0.022c0.264,0.032,0.531,0.06,0.803,0.084L37.71,59.4
|
34 |
+
c0.218,0.021,0.437,0.035,0.659,0.053l0.229,0.015c0.286,0.019,0.576,0.031,0.867,0.041c0.202,0.007,0.405,0.013,0.611,0.017
|
35 |
+
c0.199,0.002,0.398,0.002,0.596,0.002c0.342,0,0.686-0.008,1.02-0.019l0.189-0.007c0.412-0.018,0.818-0.042,1.219-0.07l0.16-0.015
|
36 |
+
c0.342-0.028,0.68-0.063,1.012-0.103l0.17-0.021c0.328-0.041,0.652-0.087,0.972-0.139l0.121-0.021
|
37 |
+
c0.396-0.065,0.778-0.141,1.151-0.221l0.131-0.029c0.369-0.079,0.726-0.169,1.067-0.265l0.11-0.029
|
38 |
+
c0.299-0.086,0.587-0.177,0.867-0.271l0.111-0.037c0.273-0.096,0.539-0.196,0.793-0.301l0.137-0.058
|
39 |
+
c0.109-0.046,0.213-0.092,0.318-0.14l0.153-0.07c0.149-0.072,0.299-0.146,0.438-0.221c0.238-0.126,0.463-0.258,0.672-0.393
|
40 |
+
l0.029-0.021c0.17-0.108,0.324-0.224,0.473-0.338l0.084-0.063c0.134-0.107,0.26-0.216,0.373-0.326l0.048-0.047
|
41 |
+
c0.093-0.094,0.178-0.188,0.26-0.281l0.069-0.082c0.082-0.107,0.166-0.215,0.234-0.324l0.016-0.024
|
42 |
+
c0.063-0.104,0.117-0.208,0.166-0.313l0.037-0.088c0.045-0.104,0.082-0.211,0.111-0.317l0.012-0.036
|
43 |
+
c0.029-0.122,0.049-0.246,0.062-0.37l0.011-0.202l0.069,7.813L53.535,62.24z M53.535,51.045l-0.008,0.043
|
44 |
+
c-0.01,0.123-0.029,0.247-0.062,0.369v0.007l-0.012,0.03c-0.024,0.107-0.065,0.213-0.108,0.316l-0.018,0.047l-0.021,0.041
|
45 |
+
c-0.05,0.106-0.104,0.213-0.168,0.315l-0.011,0.019l-0.004,0.002c-0.067,0.111-0.147,0.22-0.235,0.326l-0.025,0.035l-0.043,0.047
|
46 |
+
c-0.078,0.094-0.164,0.188-0.256,0.276l-0.035,0.04l-0.016,0.014c-0.113,0.109-0.236,0.215-0.367,0.319l-0.039,0.035l-0.056,0.038
|
47 |
+
c-0.145,0.113-0.297,0.225-0.462,0.33l-0.012,0.011l-0.034,0.019c-0.202,0.131-0.418,0.26-0.649,0.383l-0.008,0.004l-0.041,0.021
|
48 |
+
c-0.13,0.069-0.265,0.136-0.4,0.2l-0.15,0.066c-0.107,0.053-0.219,0.101-0.331,0.146l-0.063,0.03l-0.061,0.021
|
49 |
+
c-0.254,0.107-0.52,0.207-0.796,0.305l-0.119,0.039c-0.274,0.095-0.563,0.185-0.858,0.267l-0.047,0.019L47.95,55.24
|
50 |
+
c-0.343,0.096-0.696,0.184-1.063,0.265l-0.132,0.028c-0.368,0.08-0.748,0.152-1.137,0.219l-0.074,0.014l-0.063,0.008
|
51 |
+
c-0.317,0.054-0.643,0.099-0.972,0.141l-0.17,0.021c-0.33,0.039-0.666,0.072-1.01,0.102l-0.076,0.008l-0.085,0.005
|
52 |
+
c-0.398,0.032-0.805,0.056-1.22,0.071l-0.081,0.006l-0.105,0.002c-0.338,0.01-0.677,0.02-1.021,0.02h-0.06
|
53 |
+
c-0.179,0-0.356,0-0.538-0.002c-0.183-0.004-0.366-0.008-0.549-0.014l-0.062-0.004c-0.291-0.01-0.58-0.023-0.865-0.04l-0.078-0.005
|
54 |
+
l-0.157-0.012c-0.218-0.014-0.434-0.031-0.648-0.051l-0.15-0.01l-0.083-0.011c-0.269-0.024-0.535-0.054-0.797-0.086l-0.042-0.004
|
55 |
+
l-0.129-0.019c-0.221-0.029-0.438-0.059-0.653-0.092l-0.124-0.017l-0.102-0.019c-0.266-0.041-0.53-0.086-0.79-0.136l-0.012-0.002
|
56 |
+
l-0.047-0.01c-0.259-0.05-0.51-0.103-0.761-0.158l-0.112-0.021l-0.078-0.021c-0.278-0.063-0.552-0.131-0.818-0.203L33.024,55.2
|
57 |
+
l-0.079-0.022c-0.315-0.087-0.621-0.178-0.917-0.275l-0.044-0.012l-0.14-0.047c-0.124-0.044-0.244-0.086-0.366-0.13l-0.213-0.077
|
58 |
+
c-0.116-0.043-0.227-0.088-0.34-0.132l-0.132-0.053l-0.072-0.031l-0.216-0.092l-0.236-0.104l-0.207-0.1l-0.219-0.107l-0.204-0.104
|
59 |
+
l-0.202-0.107l-0.192-0.111l-0.188-0.109l-0.182-0.115l-0.173-0.113l-0.173-0.119l-0.156-0.114l-0.162-0.128l-0.14-0.113
|
60 |
+
l-0.148-0.133l-0.126-0.115l-0.135-0.139l-0.109-0.113l-0.123-0.145l-0.095-0.115l-0.103-0.148l-0.081-0.115l-0.089-0.155
|
61 |
+
l-0.063-0.113l-0.074-0.163l-0.047-0.111l-0.055-0.174l-0.033-0.104l-0.039-0.193l-0.016-0.087
|
62 |
+
c-0.012-0.096-0.019-0.188-0.019-0.284l-0.068-7.813c0,0.095,0.006,0.19,0.019,0.284l0.023,0.121l0.031,0.158l0.042,0.135
|
63 |
+
l0.046,0.143l0.059,0.135l0.06,0.139l0.078,0.134l0.08,0.137l0.09,0.132l0.094,0.133l0.105,0.127l0.108,0.133l0.119,0.123
|
64 |
+
l0.127,0.131l0.132,0.119l0.143,0.129l0.146,0.115l0.157,0.127l0.158,0.111l0.17,0.122l0.169,0.111l0.185,0.116l0.184,0.106
|
65 |
+
l0.197,0.114l0.197,0.104l0.208,0.109l0.209,0.102l0.222,0.105l0.22,0.098l0.23,0.098l0.197,0.08
|
66 |
+
c0.113,0.045,0.228,0.091,0.344,0.136l0.212,0.075c0.118,0.045,0.24,0.086,0.362,0.127l0.188,0.064
|
67 |
+
c0.297,0.096,0.604,0.188,0.92,0.274l0.134,0.036c0.27,0.072,0.545,0.14,0.825,0.205l0.183,0.039
|
68 |
+
c0.25,0.058,0.504,0.109,0.762,0.16l0.063,0.012c0.261,0.05,0.526,0.093,0.795,0.136l0.215,0.032
|
69 |
+
c0.22,0.033,0.44,0.064,0.665,0.095l0.162,0.021c0.264,0.03,0.531,0.061,0.803,0.086l0.224,0.02
|
70 |
+
c0.218,0.02,0.437,0.037,0.659,0.053L38.6,48.27c0.286,0.019,0.576,0.033,0.867,0.043c0.202,0.006,0.405,0.013,0.611,0.015
|
71 |
+
c0.199,0.004,0.398,0.004,0.596,0.004c0.342,0,0.686-0.009,1.02-0.019l0.189-0.01c0.412-0.016,0.818-0.039,1.219-0.07l0.16-0.014
|
72 |
+
c0.342-0.027,0.68-0.063,1.012-0.102l0.17-0.021c0.328-0.041,0.652-0.087,0.972-0.138l0.121-0.021
|
73 |
+
c0.396-0.067,0.778-0.141,1.151-0.222l0.131-0.028c0.369-0.082,0.726-0.172,1.068-0.267l0.109-0.03
|
74 |
+
c0.299-0.084,0.587-0.174,0.867-0.27l0.111-0.038c0.273-0.095,0.539-0.194,0.793-0.3l0.137-0.055
|
75 |
+
c0.109-0.047,0.213-0.097,0.318-0.143l0.153-0.07c0.149-0.07,0.299-0.146,0.438-0.222c0.238-0.125,0.463-0.257,0.672-0.392
|
76 |
+
l0.029-0.021c0.17-0.108,0.324-0.223,0.473-0.339l0.085-0.064c0.133-0.104,0.259-0.215,0.372-0.324l0.048-0.049
|
77 |
+
c0.093-0.092,0.178-0.186,0.26-0.28l0.069-0.081c0.082-0.105,0.166-0.217,0.234-0.324l0.017-0.025
|
78 |
+
c0.063-0.104,0.116-0.207,0.165-0.313l0.037-0.088c0.045-0.105,0.082-0.211,0.111-0.316l0.012-0.037
|
79 |
+
c0.029-0.123,0.05-0.246,0.062-0.369l0.011-0.203l0.069,7.813L53.535,51.045z M53.535,39.852l-0.008,0.04
|
80 |
+
c-0.01,0.125-0.029,0.249-0.062,0.371v0.007l-0.012,0.029c-0.024,0.108-0.065,0.213-0.108,0.316l-0.018,0.047l-0.021,0.043
|
81 |
+
c-0.05,0.105-0.104,0.211-0.168,0.316l-0.011,0.016l-0.004,0.004c-0.067,0.109-0.147,0.219-0.235,0.326l-0.025,0.035l-0.043,0.045
|
82 |
+
c-0.078,0.096-0.164,0.188-0.256,0.279l-0.035,0.039l-0.016,0.014c-0.113,0.107-0.236,0.215-0.367,0.318l-0.039,0.034l-0.056,0.039
|
83 |
+
c-0.145,0.113-0.297,0.226-0.462,0.332l-0.012,0.009l-0.034,0.018c-0.202,0.133-0.418,0.26-0.649,0.383l-0.008,0.006l-0.041,0.02
|
84 |
+
c-0.13,0.068-0.265,0.135-0.4,0.201l-0.15,0.066c-0.107,0.051-0.219,0.1-0.331,0.146L49.9,43.381l-0.061,0.021
|
85 |
+
c-0.254,0.104-0.52,0.205-0.796,0.303l-0.119,0.039c-0.274,0.094-0.563,0.184-0.858,0.268l-0.047,0.016l-0.069,0.018
|
86 |
+
c-0.343,0.096-0.696,0.186-1.063,0.268l-0.132,0.024c-0.368,0.08-0.748,0.154-1.137,0.22l-0.074,0.016L45.48,44.58
|
87 |
+
c-0.317,0.051-0.643,0.098-0.972,0.139l-0.17,0.02c-0.33,0.041-0.666,0.074-1.01,0.105l-0.076,0.008l-0.085,0.004
|
88 |
+
c-0.398,0.031-0.805,0.057-1.22,0.072l-0.081,0.006h-0.105c-0.338,0.012-0.677,0.019-1.021,0.02l-0.06,0.001
|
89 |
+
c-0.179,0-0.356-0.001-0.538-0.004c-0.183-0.001-0.366-0.007-0.549-0.013l-0.062-0.004c-0.291-0.01-0.58-0.021-0.865-0.041
|
90 |
+
l-0.078-0.004l-0.157-0.011c-0.218-0.017-0.434-0.032-0.648-0.051l-0.15-0.013l-0.083-0.01c-0.269-0.025-0.535-0.053-0.797-0.084
|
91 |
+
l-0.042-0.006l-0.129-0.018c-0.221-0.028-0.438-0.059-0.653-0.09l-0.124-0.019l-0.102-0.019c-0.266-0.041-0.53-0.086-0.79-0.135
|
92 |
+
l-0.012-0.002l-0.047-0.011c-0.259-0.05-0.51-0.103-0.761-0.157l-0.112-0.022l-0.078-0.019c-0.278-0.063-0.552-0.131-0.818-0.205
|
93 |
+
l-0.063-0.015l-0.079-0.024c-0.315-0.086-0.621-0.176-0.917-0.272l-0.044-0.013l-0.14-0.049c-0.124-0.041-0.244-0.084-0.366-0.127
|
94 |
+
l-0.213-0.078c-0.116-0.043-0.227-0.088-0.34-0.131l-0.132-0.054l-0.072-0.03l-0.216-0.092l-0.236-0.105l-0.207-0.098l-0.219-0.106
|
95 |
+
l-0.204-0.104l-0.202-0.107l-0.192-0.11l-0.188-0.11l-0.182-0.115l-0.173-0.112l-0.173-0.121l-0.156-0.112l-0.162-0.129
|
96 |
+
l-0.14-0.113l-0.148-0.133l-0.126-0.115l-0.135-0.139l-0.109-0.113l-0.123-0.146l-0.095-0.116l-0.103-0.146l-0.081-0.115
|
97 |
+
l-0.089-0.156l-0.063-0.114l-0.074-0.163l-0.047-0.109l-0.055-0.175l-0.033-0.102l-0.039-0.195l-0.016-0.086
|
98 |
+
c-0.012-0.093-0.019-0.188-0.019-0.284l-0.059-6.807c-0.001-0.023-0.009-0.045-0.009-0.069c0-0.021,0.007-0.042,0.008-0.063
|
99 |
+
l-0.008-0.875c0,0.095,0.006,0.19,0.019,0.285l0.023,0.121l0.014,0.07c0.568-2.793,6.314-4.905,13.339-4.797
|
100 |
+
c7.031,0.108,12.799,2.404,13.371,5.22c0.02-0.094,0.038-0.189,0.047-0.284l0.012-0.203l0.068,7.815L53.535,39.852z"/>
|
101 |
</g>
|
102 |
</svg>
|
@@ -1,14 +1,101 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
</g>
|
14 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M53.461,54.467c-0.012,0.124-0.031,0.248-0.061,0.37l-0.012,0.036c-0.029,0.107-0.066,0.214-0.111,0.316
|
8 |
+
l-0.037,0.09c-0.051,0.104-0.104,0.209-0.166,0.313l-0.018,0.024c-0.066,0.108-0.15,0.217-0.233,0.323l-0.069,0.082
|
9 |
+
c-0.082,0.095-0.167,0.188-0.26,0.281l-0.047,0.047c-0.114,0.111-0.24,0.219-0.373,0.326L51.99,56.74
|
10 |
+
c-0.148,0.115-0.303,0.229-0.473,0.338l-0.031,0.02c-0.207,0.135-0.432,0.268-0.67,0.394c-0.142,0.075-0.289,0.147-0.439,0.221
|
11 |
+
l-0.154,0.07c-0.104,0.048-0.209,0.094-0.318,0.14l-0.137,0.059c-0.254,0.104-0.519,0.205-0.793,0.301l-0.111,0.037
|
12 |
+
c-0.279,0.094-0.567,0.185-0.866,0.271l-0.11,0.029c-0.343,0.096-0.699,0.185-1.068,0.265l-0.129,0.029
|
13 |
+
c-0.373,0.08-0.756,0.154-1.152,0.221l-0.121,0.02c-0.318,0.053-0.643,0.099-0.971,0.14l-0.172,0.021
|
14 |
+
c-0.332,0.041-0.668,0.074-1.01,0.104l-0.16,0.014c-0.4,0.029-0.808,0.055-1.22,0.071l-0.188,0.007
|
15 |
+
c-0.336,0.01-0.678,0.018-1.021,0.018c-0.197,0-0.396,0-0.596-0.002c-0.206-0.004-0.409-0.01-0.611-0.016
|
16 |
+
c-0.291-0.01-0.581-0.023-0.867-0.041l-0.229-0.015c-0.222-0.017-0.441-0.032-0.659-0.052l-0.224-0.021
|
17 |
+
c-0.272-0.023-0.539-0.052-0.803-0.084l-0.162-0.021c-0.225-0.027-0.445-0.061-0.665-0.092l-0.215-0.033
|
18 |
+
c-0.269-0.043-0.535-0.088-0.795-0.137L34.786,59c-0.258-0.049-0.512-0.104-0.762-0.158l-0.183-0.041
|
19 |
+
c-0.28-0.064-0.556-0.133-0.825-0.205l-0.134-0.037c-0.316-0.086-0.623-0.177-0.92-0.272l-0.188-0.063
|
20 |
+
c-0.123-0.041-0.244-0.084-0.362-0.125L31.2,58.02c-0.117-0.043-0.231-0.088-0.344-0.135l-0.197-0.078l-0.23-0.1l-0.22-0.1
|
21 |
+
l-0.222-0.104L29.778,57.4l-0.208-0.107l-0.197-0.104l-0.197-0.115l-0.184-0.105l-0.185-0.119l-0.169-0.109l-0.17-0.121
|
22 |
+
l-0.158-0.114l-0.157-0.125l-0.146-0.116l-0.143-0.13l-0.132-0.118l-0.127-0.129l-0.119-0.123l-0.108-0.136l-0.105-0.127
|
23 |
+
l-0.094-0.133l-0.09-0.13l-0.08-0.137l-0.078-0.133l-0.06-0.139l-0.059-0.137l-0.046-0.141l-0.042-0.136l-0.031-0.16l-0.023-0.12
|
24 |
+
c-0.013-0.095-0.019-0.189-0.019-0.283l0.068,7.813c0,0.097,0.006,0.188,0.019,0.284l0.016,0.085l0.039,0.194l0.033,0.104
|
25 |
+
l0.055,0.174l0.047,0.109l0.074,0.164l0.063,0.114l0.089,0.154l0.081,0.115l0.103,0.148l0.095,0.115l0.123,0.145l0.109,0.115
|
26 |
+
l0.135,0.138l0.126,0.114l0.148,0.133l0.14,0.113l0.162,0.129l0.156,0.113l0.173,0.121l0.173,0.113l0.182,0.113l0.188,0.111
|
27 |
+
l0.192,0.11l0.202,0.106l0.204,0.106l0.219,0.104l0.207,0.1l0.236,0.104l0.216,0.092l0.072,0.033l0.132,0.051
|
28 |
+
c0.114,0.045,0.225,0.09,0.34,0.132l0.213,0.079c0.122,0.043,0.242,0.084,0.366,0.127l0.14,0.048l0.044,0.015
|
29 |
+
c0.295,0.096,0.601,0.186,0.917,0.271l0.079,0.025l0.063,0.014c0.266,0.072,0.54,0.139,0.818,0.205l0.078,0.02l0.112,0.021
|
30 |
+
c0.251,0.055,0.502,0.107,0.761,0.156l0.047,0.012h0.012c0.26,0.051,0.524,0.096,0.79,0.137l0.102,0.018l0.124,0.017
|
31 |
+
c0.215,0.032,0.432,0.063,0.653,0.092l0.129,0.019l0.042,0.004c0.263,0.033,0.528,0.061,0.797,0.086l0.083,0.01l0.15,0.012
|
32 |
+
c0.214,0.02,0.43,0.035,0.648,0.051l0.157,0.012l0.078,0.004c0.285,0.019,0.574,0.031,0.865,0.041l0.062,0.002
|
33 |
+
c0.183,0.008,0.366,0.011,0.549,0.014c0.181,0.004,0.359,0.005,0.537,0.005l0.061-0.001c0.345-0.002,0.684-0.009,1.021-0.021
|
34 |
+
l0.104-0.002l0.081-0.004c0.415-0.016,0.82-0.039,1.22-0.07l0.085-0.006l0.076-0.008c0.344-0.028,0.68-0.063,1.01-0.102l0.17-0.021
|
35 |
+
c0.329-0.041,0.653-0.086,0.971-0.139l0.064-0.01l0.074-0.014c0.389-0.064,0.768-0.137,1.137-0.217l0.133-0.029
|
36 |
+
c0.365-0.08,0.721-0.17,1.063-0.266l0.068-0.017l0.049-0.017c0.296-0.082,0.582-0.174,0.857-0.268l0.119-0.039
|
37 |
+
c0.277-0.096,0.542-0.197,0.796-0.304l0.06-0.021l0.063-0.029c0.112-0.049,0.224-0.098,0.331-0.146l0.15-0.068
|
38 |
+
c0.137-0.063,0.271-0.131,0.4-0.198l0.041-0.021l0.008-0.005c0.231-0.122,0.447-0.253,0.649-0.382l0.034-0.02l0.012-0.01
|
39 |
+
c0.165-0.105,0.317-0.218,0.463-0.33l0.055-0.039l0.039-0.033c0.131-0.105,0.254-0.213,0.367-0.32l0.016-0.014l0.035-0.041
|
40 |
+
c0.092-0.09,0.178-0.182,0.257-0.275l0.043-0.048l0.024-0.034c0.088-0.107,0.168-0.215,0.235-0.326l0.004-0.004l0.011-0.016
|
41 |
+
c0.063-0.104,0.118-0.211,0.168-0.316l0.021-0.042l0.018-0.046c0.043-0.104,0.084-0.211,0.108-0.318l0.012-0.027V62.65
|
42 |
+
c0.031-0.123,0.052-0.246,0.062-0.371l0.008-0.041l0.006-0.161l-0.068-7.813L53.461,54.467z"/>
|
43 |
+
<path fill="#333333" d="M53.461,43.273c-0.012,0.123-0.031,0.246-0.061,0.369l-0.012,0.037c-0.029,0.105-0.066,0.211-0.111,0.316
|
44 |
+
l-0.037,0.088c-0.051,0.105-0.104,0.209-0.166,0.313l-0.018,0.025c-0.066,0.107-0.15,0.219-0.233,0.324l-0.069,0.081
|
45 |
+
c-0.082,0.096-0.167,0.188-0.26,0.28l-0.047,0.049c-0.114,0.109-0.24,0.22-0.373,0.324l-0.084,0.064
|
46 |
+
c-0.148,0.116-0.303,0.229-0.473,0.339l-0.031,0.021c-0.207,0.135-0.432,0.267-0.67,0.392c-0.142,0.076-0.289,0.149-0.439,0.222
|
47 |
+
l-0.154,0.07c-0.104,0.046-0.209,0.096-0.318,0.143l-0.137,0.055c-0.254,0.105-0.519,0.205-0.793,0.3l-0.111,0.038
|
48 |
+
c-0.279,0.096-0.567,0.186-0.866,0.27l-0.11,0.03c-0.343,0.095-0.699,0.185-1.068,0.267l-0.129,0.028
|
49 |
+
c-0.373,0.081-0.756,0.153-1.152,0.222l-0.121,0.021c-0.318,0.052-0.643,0.097-0.971,0.138l-0.172,0.021
|
50 |
+
c-0.332,0.039-0.668,0.072-1.01,0.102l-0.16,0.014c-0.4,0.031-0.808,0.056-1.22,0.07l-0.188,0.01
|
51 |
+
c-0.336,0.011-0.678,0.019-1.021,0.019c-0.197,0-0.396,0-0.596-0.004c-0.206-0.002-0.409-0.009-0.611-0.015
|
52 |
+
c-0.291-0.01-0.581-0.024-0.867-0.043l-0.229-0.014c-0.222-0.016-0.441-0.033-0.659-0.053l-0.224-0.02
|
53 |
+
c-0.272-0.025-0.539-0.056-0.803-0.086l-0.162-0.021c-0.225-0.029-0.445-0.062-0.665-0.095l-0.215-0.032
|
54 |
+
c-0.269-0.043-0.535-0.086-0.795-0.136l-0.063-0.012c-0.258-0.051-0.512-0.104-0.762-0.16l-0.183-0.039
|
55 |
+
c-0.28-0.065-0.556-0.133-0.825-0.205l-0.134-0.037c-0.316-0.086-0.623-0.18-0.92-0.274l-0.188-0.063
|
56 |
+
c-0.123-0.041-0.244-0.082-0.362-0.127L31.2,46.822c-0.117-0.045-0.231-0.09-0.344-0.135l-0.197-0.08l-0.23-0.099l-0.22-0.097
|
57 |
+
l-0.222-0.105l-0.209-0.102l-0.208-0.109l-0.197-0.104l-0.197-0.114l-0.184-0.106l-0.185-0.117l-0.169-0.11l-0.17-0.122
|
58 |
+
l-0.158-0.111l-0.157-0.127l-0.146-0.115l-0.143-0.129l-0.132-0.119l-0.127-0.131l-0.119-0.123l-0.108-0.133l-0.105-0.127
|
59 |
+
l-0.094-0.134l-0.09-0.131l-0.08-0.138l-0.078-0.133l-0.06-0.139l-0.059-0.135l-0.046-0.143l-0.042-0.135l-0.031-0.158
|
60 |
+
l-0.023-0.121c-0.013-0.094-0.019-0.189-0.019-0.285l0.068,7.814c0,0.096,0.006,0.188,0.019,0.284l0.016,0.086l0.039,0.194
|
61 |
+
l0.033,0.104l0.055,0.174l0.047,0.11l0.074,0.164l0.063,0.113l0.089,0.155l0.081,0.115l0.103,0.148l0.095,0.115l0.123,0.145
|
62 |
+
l0.109,0.113l0.135,0.139l0.126,0.115l0.148,0.133l0.14,0.113l0.162,0.128l0.156,0.114l0.173,0.119l0.173,0.113l0.182,0.115
|
63 |
+
l0.188,0.109l0.192,0.111l0.202,0.107l0.204,0.104l0.219,0.107l0.207,0.1l0.236,0.104l0.216,0.092l0.072,0.03l0.132,0.054
|
64 |
+
c0.114,0.044,0.225,0.088,0.34,0.131l0.213,0.078c0.122,0.044,0.242,0.086,0.366,0.129l0.14,0.048l0.044,0.012
|
65 |
+
c0.295,0.099,0.601,0.188,0.917,0.274l0.079,0.022l0.063,0.017c0.266,0.072,0.54,0.14,0.818,0.203l0.078,0.021l0.112,0.021
|
66 |
+
c0.251,0.058,0.502,0.108,0.761,0.157l0.047,0.011l0.012,0.002c0.26,0.049,0.524,0.095,0.79,0.136l0.102,0.018l0.124,0.018
|
67 |
+
c0.215,0.033,0.432,0.063,0.653,0.092l0.129,0.018l0.042,0.005c0.263,0.032,0.528,0.062,0.797,0.086l0.083,0.01l0.15,0.011
|
68 |
+
c0.214,0.02,0.43,0.037,0.648,0.051l0.157,0.012l0.078,0.005c0.285,0.017,0.574,0.03,0.865,0.04l0.062,0.004
|
69 |
+
c0.183,0.005,0.366,0.01,0.549,0.014c0.181,0.002,0.359,0.002,0.537,0.002h0.061c0.345,0,0.684-0.01,1.021-0.02l0.104-0.002
|
70 |
+
l0.081-0.006c0.415-0.016,0.82-0.039,1.22-0.071l0.085-0.005l0.076-0.008c0.344-0.028,0.68-0.063,1.01-0.102l0.17-0.021
|
71 |
+
c0.329-0.042,0.653-0.088,0.971-0.141l0.064-0.008l0.074-0.014c0.389-0.064,0.768-0.139,1.137-0.219l0.133-0.028
|
72 |
+
c0.365-0.081,0.721-0.169,1.063-0.265l0.068-0.016l0.049-0.019c0.296-0.082,0.582-0.173,0.857-0.267l0.119-0.039
|
73 |
+
c0.277-0.098,0.542-0.196,0.796-0.305l0.06-0.021l0.063-0.028c0.112-0.047,0.224-0.095,0.331-0.146l0.15-0.067
|
74 |
+
c0.137-0.065,0.271-0.132,0.4-0.2l0.041-0.02l0.008-0.006c0.231-0.123,0.447-0.252,0.649-0.383l0.034-0.018l0.012-0.01
|
75 |
+
c0.165-0.106,0.317-0.219,0.463-0.332l0.055-0.037l0.039-0.035c0.131-0.105,0.254-0.21,0.367-0.32l0.016-0.013l0.035-0.04
|
76 |
+
c0.092-0.09,0.178-0.184,0.257-0.277l0.043-0.047l0.024-0.033c0.088-0.107,0.168-0.217,0.235-0.326l0.004-0.004l0.011-0.018
|
77 |
+
c0.063-0.104,0.118-0.209,0.168-0.316l0.021-0.041l0.018-0.047c0.043-0.104,0.084-0.209,0.108-0.316l0.012-0.029v-0.007
|
78 |
+
c0.031-0.122,0.052-0.246,0.062-0.369l0.008-0.043l0.006-0.161l-0.068-7.813L53.461,43.273z"/>
|
79 |
+
<path fill="#333333" d="M53.461,32.079c-0.009,0.095-0.027,0.189-0.047,0.284c-0.572-2.816-6.34-5.112-13.371-5.22
|
80 |
+
c-7.025-0.108-12.771,2.004-13.339,4.797l-0.014-0.07l-0.023-0.121c-0.013-0.095-0.019-0.19-0.019-0.285l0.008,0.875
|
81 |
+
c0,0.021-0.008,0.042-0.008,0.063c0,0.023,0.008,0.046,0.009,0.069l0.059,6.807c0,0.096,0.006,0.19,0.019,0.284l0.016,0.086
|
82 |
+
l0.039,0.195l0.033,0.102l0.055,0.175l0.047,0.109l0.074,0.163l0.063,0.114l0.089,0.156l0.081,0.115l0.103,0.146l0.095,0.116
|
83 |
+
l0.123,0.146l0.109,0.112l0.135,0.14l0.126,0.115l0.148,0.133l0.14,0.112l0.162,0.13l0.156,0.112l0.173,0.121l0.173,0.112
|
84 |
+
l0.182,0.115l0.188,0.11l0.192,0.11l0.202,0.106l0.204,0.104l0.219,0.106l0.207,0.099l0.236,0.105l0.216,0.092l0.072,0.03
|
85 |
+
l0.132,0.054c0.114,0.043,0.225,0.088,0.34,0.131l0.213,0.078c0.122,0.043,0.242,0.086,0.366,0.127l0.14,0.049l0.044,0.013
|
86 |
+
c0.295,0.098,0.601,0.188,0.917,0.272l0.079,0.024l0.063,0.015c0.266,0.073,0.54,0.141,0.818,0.205l0.078,0.018l0.112,0.023
|
87 |
+
c0.251,0.055,0.502,0.107,0.761,0.157l0.047,0.011l0.012,0.002c0.26,0.049,0.524,0.094,0.79,0.135l0.102,0.019l0.124,0.019
|
88 |
+
c0.215,0.03,0.432,0.062,0.653,0.09l0.129,0.018l0.042,0.006c0.263,0.031,0.528,0.059,0.797,0.084l0.083,0.01l0.15,0.012
|
89 |
+
c0.214,0.02,0.43,0.035,0.648,0.052l0.157,0.011l0.078,0.004c0.285,0.02,0.574,0.031,0.865,0.041l0.062,0.004
|
90 |
+
c0.183,0.006,0.366,0.012,0.549,0.012c0.181,0.004,0.359,0.005,0.538,0.005l0.06-0.001c0.345-0.002,0.684-0.008,1.021-0.02h0.105
|
91 |
+
l0.081-0.007c0.415-0.017,0.819-0.041,1.22-0.071l0.085-0.004l0.076-0.009c0.344-0.028,0.68-0.063,1.01-0.104l0.17-0.02
|
92 |
+
c0.329-0.042,0.653-0.088,0.972-0.139l0.063-0.008l0.074-0.017c0.389-0.063,0.769-0.139,1.137-0.219l0.132-0.024
|
93 |
+
c0.366-0.082,0.721-0.172,1.063-0.268l0.069-0.018l0.047-0.016c0.297-0.084,0.584-0.174,0.858-0.268l0.119-0.039
|
94 |
+
c0.276-0.098,0.542-0.197,0.796-0.303l0.061-0.021l0.063-0.029c0.112-0.047,0.223-0.096,0.331-0.146l0.149-0.065
|
95 |
+
c0.138-0.068,0.271-0.134,0.4-0.201l0.041-0.021l0.008-0.006c0.232-0.123,0.448-0.25,0.65-0.382l0.034-0.02l0.012-0.008
|
96 |
+
c0.165-0.107,0.317-0.219,0.462-0.332l0.055-0.039l0.039-0.035c0.131-0.104,0.254-0.21,0.367-0.318l0.016-0.014l0.037-0.039
|
97 |
+
c0.09-0.092,0.177-0.184,0.256-0.279l0.043-0.045l0.023-0.035c0.088-0.106,0.168-0.215,0.236-0.325l0.004-0.004l0.01-0.017
|
98 |
+
c0.063-0.104,0.119-0.209,0.168-0.315l0.022-0.043l0.017-0.048c0.045-0.104,0.084-0.208,0.109-0.315l0.012-0.029V40.26
|
99 |
+
c0.031-0.122,0.051-0.245,0.061-0.371l0.009-0.04l0.006-0.161l-0.069-7.815L53.461,32.079z"/>
|
100 |
</g>
|
101 |
</svg>
|
@@ -1,10 +1,10 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
/>
|
9 |
</g>
|
10 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M28.684,67.988h-10.99V40.771h10.99V67.988z M62,67.988H31.453
|
8 |
+
V40.771H62V67.988z M62,37.941H17.694V26.277H62V37.941z"/>
|
9 |
</g>
|
10 |
</svg>
|
@@ -1,11 +1,11 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<rect x="
|
8 |
-
<rect x="
|
9 |
-
<rect x="
|
10 |
</g>
|
11 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<rect x="17.694" y="26.277" fill="#333333" width="44.306" height="11.664"/>
|
8 |
+
<rect x="31.453" y="40.771" fill="#333333" width="30.547" height="27.217"/>
|
9 |
+
<rect x="17.694" y="40.771" fill="#333333" width="10.99" height="27.217"/>
|
10 |
</g>
|
11 |
</svg>
|
@@ -1,8 +1,11 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
-
<
|
7 |
-
|
|
|
|
|
|
|
8 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
+
<g>
|
7 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M38.091,69.479L19.738,58.882V39.52l18.353,10.871V69.479z
|
8 |
+
M60.001,58.882L41.723,69.436v-18.59l18.278-10.939V58.882z M60.001,35.677L40.288,47.473L20.024,35.47l19.845-11.458
|
9 |
+
l20.132,11.623V35.677z"/>
|
10 |
+
</g>
|
11 |
</svg>
|
@@ -1,11 +1,11 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<polygon fill="#333333" points="
|
8 |
-
<polygon fill="#333333" points="
|
9 |
-
<polygon fill="#333333" points="
|
10 |
</g>
|
11 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<polygon fill="#333333" points="60.001,35.677 60.001,35.635 39.869,24.012 20.024,35.47 40.288,47.473 "/>
|
8 |
+
<polygon fill="#333333" points="60.001,39.907 41.723,50.846 41.723,69.436 60.001,58.882 "/>
|
9 |
+
<polygon fill="#333333" points="19.738,39.52 19.738,58.882 38.091,69.479 38.091,50.391 "/>
|
10 |
</g>
|
11 |
</svg>
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" xml:space="preserve">
|
6 |
+
<path fill="#F05A29" d="M78,23V5H60v18H42V5H24v18H12v72h78V23H78z"/>
|
7 |
+
<g>
|
8 |
+
<path fill="#FFFFFF" d="M22.69,63.676c0,0.702-0.24,1.241-0.72,1.618s-1.149,0.565-2.007,0.565h-0.467l-0.488,2.322H18l1.313-6.211
|
9 |
+
h1.419c0.648,0,1.137,0.143,1.466,0.428C22.526,62.684,22.69,63.109,22.69,63.676z M19.678,65.005h0.399
|
10 |
+
c0.504,0,0.895-0.112,1.17-0.338c0.276-0.226,0.414-0.544,0.414-0.958c0-0.309-0.083-0.533-0.249-0.675s-0.419-0.214-0.762-0.214
|
11 |
+
h-0.506L19.678,65.005z"/>
|
12 |
+
<path fill="#FFFFFF" d="M23.797,68.184h-0.994l1.402-6.611h0.998L23.797,68.184z"/>
|
13 |
+
<path fill="#FFFFFF" d="M27.058,63.484l-0.548,2.591c-0.088,0.399-0.132,0.673-0.132,0.819c0,0.377,0.18,0.565,0.54,0.565
|
14 |
+
c0.204,0,0.406-0.081,0.607-0.241c0.201-0.162,0.379-0.393,0.535-0.691c0.156-0.297,0.276-0.648,0.361-1.051l0.42-1.992h0.99
|
15 |
+
l-0.99,4.697h-0.786l0.089-0.871H28.11c-0.232,0.33-0.475,0.57-0.727,0.726s-0.524,0.231-0.815,0.231
|
16 |
+
c-0.38,0-0.673-0.107-0.879-0.324c-0.207-0.215-0.31-0.522-0.31-0.926c0-0.179,0.017-0.354,0.051-0.527
|
17 |
+
c0.034-0.176,0.068-0.35,0.102-0.525l0.522-2.48H27.058L27.058,63.484z"/>
|
18 |
+
<path fill="#FFFFFF" d="M34.808,63.484l-0.132,0.582l-0.815,0.14c0.079,0.165,0.119,0.358,0.119,0.582
|
19 |
+
c0,0.547-0.169,0.981-0.506,1.303c-0.337,0.322-0.789,0.481-1.355,0.481c-0.147,0-0.277-0.012-0.391-0.033
|
20 |
+
c-0.314,0.113-0.472,0.26-0.472,0.441c0,0.106,0.044,0.182,0.134,0.221c0.089,0.04,0.219,0.07,0.389,0.094l0.54,0.066
|
21 |
+
c0.499,0.063,0.855,0.188,1.07,0.373c0.215,0.185,0.323,0.451,0.323,0.797c0,0.555-0.213,0.982-0.641,1.287
|
22 |
+
c-0.428,0.303-1.035,0.453-1.823,0.453c-0.575,0-1.02-0.105-1.336-0.317c-0.315-0.213-0.474-0.504-0.474-0.875
|
23 |
+
c0-0.292,0.099-0.544,0.295-0.756c0.197-0.214,0.513-0.394,0.949-0.54c-0.215-0.127-0.323-0.309-0.323-0.539
|
24 |
+
c0-0.195,0.066-0.365,0.198-0.508c0.131-0.145,0.339-0.281,0.622-0.414c-0.382-0.229-0.573-0.588-0.573-1.07
|
25 |
+
c0-0.557,0.173-1.003,0.521-1.343c0.347-0.341,0.805-0.511,1.374-0.511c0.227,0,0.453,0.029,0.68,0.086H34.808z M31.329,68.105
|
26 |
+
c-0.317,0.052-0.561,0.151-0.731,0.303c-0.17,0.148-0.255,0.335-0.255,0.556c0,0.185,0.079,0.331,0.236,0.44
|
27 |
+
c0.157,0.107,0.397,0.162,0.72,0.162c0.461,0,0.823-0.075,1.083-0.229c0.261-0.152,0.391-0.372,0.391-0.658
|
28 |
+
c0-0.145-0.064-0.258-0.191-0.34s-0.351-0.141-0.671-0.174L31.329,68.105z M32.476,64.066c-0.184,0-0.346,0.055-0.484,0.162
|
29 |
+
c-0.139,0.109-0.247,0.258-0.323,0.446c-0.077,0.188-0.115,0.396-0.115,0.618c0,0.201,0.05,0.355,0.151,0.465
|
30 |
+
s0.244,0.164,0.431,0.164c0.184,0,0.343-0.056,0.478-0.166c0.134-0.109,0.239-0.262,0.314-0.453
|
31 |
+
c0.075-0.193,0.113-0.404,0.113-0.634C33.041,64.268,32.853,64.066,32.476,64.066z"/>
|
32 |
+
<path fill="#FFFFFF" d="M35.601,68.184h-1.002l1.002-4.699H36.6L35.601,68.184z M35.8,62.329c0-0.192,0.055-0.349,0.166-0.468
|
33 |
+
c0.111-0.119,0.266-0.178,0.467-0.178c0.15,0,0.272,0.037,0.365,0.111c0.094,0.075,0.141,0.188,0.141,0.342
|
34 |
+
c0,0.201-0.057,0.359-0.17,0.477s-0.262,0.175-0.446,0.175c-0.15,0-0.275-0.037-0.374-0.11C35.85,62.604,35.8,62.486,35.8,62.329z"
|
35 |
+
/>
|
36 |
+
<path fill="#FFFFFF" d="M39.685,68.184l0.604-2.854c0.051-0.255,0.076-0.44,0.076-0.558c0-0.371-0.183-0.557-0.548-0.557
|
37 |
+
c-0.204,0-0.405,0.081-0.603,0.242c-0.198,0.161-0.377,0.395-0.536,0.699c-0.158,0.304-0.277,0.648-0.356,1.033l-0.417,1.992
|
38 |
+
h-1.002l1.002-4.697h0.782l-0.089,0.871h0.038c0.235-0.336,0.478-0.578,0.727-0.729c0.25-0.151,0.52-0.228,0.812-0.228
|
39 |
+
c0.379,0,0.673,0.106,0.881,0.322c0.208,0.215,0.313,0.521,0.313,0.918c0,0.194-0.033,0.451-0.098,0.768l-0.582,2.775h-1.004
|
40 |
+
V68.184z"/>
|
41 |
+
<path fill="#FFFFFF" d="M45.069,66.738c0,0.49-0.167,0.867-0.501,1.132s-0.799,0.397-1.394,0.397c-0.538,0-0.994-0.096-1.368-0.285
|
42 |
+
v-0.861c0.433,0.255,0.875,0.382,1.325,0.382c0.275,0,0.497-0.058,0.667-0.17s0.255-0.269,0.255-0.463
|
43 |
+
c0-0.146-0.049-0.269-0.146-0.372c-0.097-0.104-0.298-0.241-0.601-0.414c-0.354-0.189-0.604-0.383-0.75-0.58
|
44 |
+
c-0.146-0.195-0.219-0.43-0.219-0.697c0-0.439,0.152-0.783,0.455-1.033c0.303-0.248,0.712-0.373,1.228-0.373
|
45 |
+
c0.555,0,1.045,0.119,1.47,0.355l-0.323,0.748c-0.396-0.215-0.773-0.322-1.13-0.322c-0.207,0-0.375,0.047-0.503,0.141
|
46 |
+
s-0.193,0.224-0.193,0.391c0,0.128,0.047,0.241,0.141,0.34c0.093,0.1,0.284,0.227,0.573,0.383c0.297,0.168,0.508,0.311,0.633,0.43
|
47 |
+
s0.22,0.248,0.285,0.389C45.037,66.393,45.069,66.555,45.069,66.738z"/>
|
48 |
+
<path fill="#FFFFFF" d="M47.427,70.271c-0.255,0-0.466-0.031-0.633-0.098v-0.807c0.181,0.057,0.342,0.085,0.484,0.085
|
49 |
+
c0.38,0,0.63-0.291,0.752-0.871l0.922-4.343h-0.76l0.089-0.449l0.824-0.322l0.089-0.392c0.125-0.562,0.315-0.959,0.571-1.195
|
50 |
+
c0.256-0.235,0.62-0.354,1.09-0.354c0.324,0,0.623,0.062,0.896,0.184l-0.259,0.747c-0.21-0.079-0.402-0.119-0.578-0.119
|
51 |
+
c-0.195,0-0.352,0.062-0.469,0.183c-0.118,0.123-0.208,0.322-0.27,0.601l-0.077,0.364h0.972l-0.157,0.757H49.94l-0.947,4.474
|
52 |
+
c-0.113,0.535-0.299,0.93-0.557,1.182C48.181,70.146,47.843,70.271,47.427,70.271z"/>
|
53 |
+
<path fill="#FFFFFF" d="M55.229,65.243c0,0.571-0.104,1.092-0.31,1.562c-0.207,0.469-0.491,0.828-0.853,1.078
|
54 |
+
c-0.36,0.251-0.776,0.376-1.246,0.376c-0.545,0-0.977-0.161-1.297-0.485c-0.319-0.324-0.479-0.766-0.479-1.323
|
55 |
+
c0-0.563,0.102-1.08,0.303-1.552c0.203-0.469,0.486-0.836,0.854-1.098c0.365-0.262,0.787-0.393,1.266-0.393
|
56 |
+
c0.553,0,0.984,0.164,1.297,0.492C55.073,64.229,55.229,64.678,55.229,65.243z M54.223,65.2c0-0.304-0.07-0.54-0.209-0.712
|
57 |
+
s-0.337-0.256-0.595-0.256c-0.265,0-0.499,0.101-0.707,0.304c-0.208,0.202-0.37,0.478-0.483,0.823
|
58 |
+
c-0.115,0.348-0.172,0.718-0.172,1.111c0,0.313,0.068,0.555,0.209,0.721c0.142,0.168,0.348,0.252,0.623,0.252
|
59 |
+
c0.254,0,0.483-0.096,0.688-0.289c0.203-0.192,0.361-0.463,0.476-0.809C54.165,65.998,54.223,65.617,54.223,65.2z"/>
|
60 |
+
<path fill="#FFFFFF" d="M58.932,63.398c0.176,0,0.327,0.018,0.459,0.052l-0.218,0.931c-0.153-0.04-0.298-0.061-0.435-0.061
|
61 |
+
c-0.355,0-0.674,0.16-0.955,0.479c-0.28,0.32-0.477,0.739-0.586,1.259l-0.45,2.123h-1.003l1.003-4.697h0.78l-0.088,0.871h0.037
|
62 |
+
c0.235-0.34,0.472-0.584,0.705-0.733C58.418,63.475,58.667,63.398,58.932,63.398z"/>
|
63 |
+
<path fill="#FFFFFF" d="M23.298,79.059h-1.096l-0.157-3.578l-0.025-0.785l0.017-0.45h-0.025c-0.133,0.407-0.299,0.819-0.497,1.235
|
64 |
+
l-1.636,3.578h-1.087l-0.225-6.211h0.973l0.081,3.61c0,0.386-0.019,0.875-0.055,1.47h0.025c0.235-0.625,0.436-1.129,0.603-1.508
|
65 |
+
l1.644-3.572h0.956l0.131,3.563l0.013,0.718l-0.013,0.799h0.034c0.079-0.248,0.178-0.529,0.297-0.839
|
66 |
+
c0.119-0.312,0.205-0.526,0.259-0.647l1.521-3.594h1.045L23.298,79.059z"/>
|
67 |
+
<path fill="#FFFFFF" d="M29.795,76.118c0,0.571-0.103,1.092-0.31,1.562c-0.207,0.469-0.491,0.828-0.852,1.078
|
68 |
+
c-0.361,0.251-0.777,0.376-1.247,0.376c-0.543,0-0.976-0.161-1.295-0.485c-0.32-0.324-0.48-0.766-0.48-1.323
|
69 |
+
c0-0.563,0.101-1.08,0.304-1.552c0.202-0.469,0.486-0.836,0.852-1.098c0.366-0.262,0.788-0.393,1.266-0.393
|
70 |
+
c0.552,0,0.984,0.164,1.295,0.492S29.795,75.553,29.795,76.118z M28.788,76.075c0-0.304-0.069-0.54-0.208-0.712
|
71 |
+
s-0.337-0.256-0.595-0.256c-0.263,0-0.499,0.101-0.707,0.304c-0.208,0.202-0.37,0.478-0.484,0.823
|
72 |
+
c-0.115,0.348-0.172,0.718-0.172,1.111c0,0.313,0.07,0.555,0.21,0.721c0.14,0.168,0.348,0.252,0.623,0.252
|
73 |
+
c0.255,0,0.484-0.096,0.688-0.289c0.204-0.192,0.362-0.463,0.476-0.809C28.731,76.873,28.788,76.492,28.788,76.075z"/>
|
74 |
+
<path fill="#FFFFFF" d="M33.498,74.273c0.175,0,0.329,0.018,0.458,0.052l-0.216,0.931c-0.153-0.04-0.297-0.061-0.434-0.061
|
75 |
+
c-0.356,0-0.675,0.16-0.956,0.479c-0.28,0.32-0.476,0.739-0.586,1.259l-0.45,2.123h-1.002l1.002-4.697h0.782l-0.089,0.871h0.038
|
76 |
+
c0.235-0.34,0.47-0.584,0.706-0.733C32.985,74.35,33.234,74.273,33.498,74.273z"/>
|
77 |
+
<path fill="#FFFFFF" d="M36.223,74.273c0.507,0,0.886,0.252,1.139,0.756h0.034c0.037-0.412,0.089-0.768,0.157-1.061l0.323-1.521
|
78 |
+
h0.99l-1.402,6.609h-0.781l0.081-0.748h-0.03c-0.249,0.301-0.49,0.516-0.722,0.643c-0.232,0.128-0.479,0.191-0.739,0.191
|
79 |
+
c-0.405,0-0.722-0.145-0.952-0.433c-0.229-0.287-0.344-0.694-0.344-1.222c0-0.58,0.101-1.122,0.304-1.627
|
80 |
+
c0.202-0.504,0.474-0.896,0.813-1.172C35.433,74.412,35.809,74.273,36.223,74.273z M35.653,78.336c0.232,0,0.462-0.115,0.69-0.35
|
81 |
+
c0.228-0.232,0.411-0.534,0.548-0.908c0.138-0.374,0.206-0.752,0.206-1.135c0-0.258-0.062-0.465-0.185-0.621
|
82 |
+
c-0.123-0.154-0.311-0.232-0.563-0.232c-0.241,0-0.466,0.109-0.675,0.327s-0.377,0.517-0.501,0.896s-0.187,0.767-0.187,1.16
|
83 |
+
C34.986,78.048,35.209,78.336,35.653,78.336z"/>
|
84 |
+
<path fill="#FFFFFF" d="M43.565,74.551c0,0.702-0.24,1.241-0.72,1.618s-1.149,0.565-2.007,0.565h-0.467l-0.488,2.322h-1.007
|
85 |
+
l1.313-6.211h1.419c0.648,0,1.137,0.143,1.466,0.428C43.401,73.559,43.565,73.984,43.565,74.551z M40.553,75.88h0.399
|
86 |
+
c0.504,0,0.895-0.112,1.17-0.338c0.276-0.226,0.414-0.544,0.414-0.958c0-0.309-0.083-0.533-0.249-0.675s-0.419-0.214-0.762-0.214
|
87 |
+
h-0.506L40.553,75.88z"/>
|
88 |
+
<path fill="#FFFFFF" d="M46.864,74.273c0.175,0,0.329,0.018,0.458,0.052l-0.216,0.931c-0.153-0.04-0.297-0.061-0.434-0.061
|
89 |
+
c-0.356,0-0.675,0.16-0.956,0.479c-0.28,0.32-0.476,0.739-0.586,1.259l-0.45,2.123h-1.002l1.002-4.697h0.782l-0.089,0.871h0.038
|
90 |
+
c0.235-0.34,0.47-0.584,0.706-0.733C46.352,74.35,46.601,74.273,46.864,74.273z"/>
|
91 |
+
<path fill="#FFFFFF" d="M49.118,79.143c-0.558,0-0.993-0.156-1.306-0.472s-0.469-0.753-0.469-1.315s0.11-1.084,0.329-1.565
|
92 |
+
c0.219-0.483,0.517-0.856,0.892-1.12s0.795-0.395,1.26-0.395c0.456,0,0.811,0.103,1.064,0.308c0.252,0.206,0.379,0.497,0.379,0.873
|
93 |
+
c0,0.517-0.235,0.919-0.707,1.209c-0.473,0.29-1.145,0.437-2.017,0.437h-0.183l-0.009,0.131v0.123c0,0.314,0.08,0.562,0.24,0.74
|
94 |
+
c0.16,0.178,0.398,0.268,0.716,0.268c0.204,0,0.406-0.027,0.607-0.082c0.201-0.053,0.439-0.145,0.714-0.275v0.795
|
95 |
+
c-0.272,0.124-0.522,0.213-0.75,0.266C49.652,79.116,49.398,79.143,49.118,79.143z M49.764,75.039
|
96 |
+
c-0.272,0-0.528,0.122-0.767,0.365c-0.239,0.242-0.411,0.564-0.516,0.964h0.124c0.532,0,0.949-0.075,1.249-0.228
|
97 |
+
c0.3-0.15,0.451-0.365,0.451-0.644c0-0.146-0.045-0.257-0.136-0.338C50.077,75.079,49.942,75.039,49.764,75.039z"/>
|
98 |
+
<path fill="#FFFFFF" d="M54.744,77.613c0,0.49-0.167,0.867-0.502,1.132c-0.334,0.265-0.799,0.397-1.393,0.397
|
99 |
+
c-0.539,0-0.994-0.096-1.369-0.285v-0.861c0.435,0.255,0.875,0.382,1.326,0.382c0.273,0,0.496-0.058,0.666-0.17
|
100 |
+
s0.256-0.269,0.256-0.463c0-0.146-0.049-0.269-0.146-0.372s-0.298-0.241-0.602-0.414c-0.354-0.189-0.604-0.383-0.75-0.58
|
101 |
+
c-0.146-0.195-0.219-0.43-0.219-0.697c0-0.439,0.151-0.783,0.454-1.033c0.304-0.248,0.712-0.373,1.228-0.373
|
102 |
+
c0.557,0,1.045,0.119,1.471,0.355l-0.322,0.748c-0.396-0.215-0.773-0.322-1.13-0.322c-0.207,0-0.375,0.047-0.504,0.141
|
103 |
+
s-0.192,0.224-0.192,0.391c0,0.128,0.047,0.241,0.141,0.34c0.093,0.1,0.283,0.227,0.572,0.383c0.299,0.168,0.51,0.311,0.633,0.43
|
104 |
+
c0.125,0.119,0.221,0.248,0.285,0.389C54.711,77.268,54.744,77.43,54.744,77.613z"/>
|
105 |
+
<path fill="#FFFFFF" d="M58.574,77.613c0,0.49-0.167,0.867-0.502,1.132c-0.334,0.265-0.799,0.397-1.393,0.397
|
106 |
+
c-0.539,0-0.994-0.096-1.369-0.285v-0.861c0.435,0.255,0.875,0.382,1.326,0.382c0.273,0,0.496-0.058,0.666-0.17
|
107 |
+
s0.256-0.269,0.256-0.463c0-0.146-0.05-0.269-0.146-0.372c-0.098-0.104-0.299-0.241-0.602-0.414
|
108 |
+
c-0.354-0.189-0.604-0.383-0.75-0.58c-0.146-0.195-0.219-0.43-0.219-0.697c0-0.439,0.151-0.783,0.454-1.033
|
109 |
+
c0.304-0.248,0.712-0.373,1.228-0.373c0.557,0,1.045,0.119,1.471,0.355l-0.322,0.748c-0.396-0.215-0.773-0.322-1.13-0.322
|
110 |
+
c-0.207,0-0.375,0.047-0.504,0.141s-0.192,0.224-0.192,0.391c0,0.128,0.047,0.241,0.141,0.34c0.093,0.1,0.283,0.227,0.572,0.383
|
111 |
+
c0.299,0.168,0.51,0.311,0.633,0.43c0.125,0.119,0.221,0.248,0.285,0.389C58.541,77.268,58.574,77.43,58.574,77.613z"/>
|
112 |
+
<path fill="#FFFFFF" d="M23.272,86.139c0,0.768-0.142,1.438-0.425,2.01c-0.283,0.572-0.695,1.014-1.236,1.322
|
113 |
+
c-0.541,0.307-1.177,0.463-1.907,0.463H18l1.313-6.211h1.568c0.767,0,1.358,0.205,1.771,0.615
|
114 |
+
C23.065,84.749,23.272,85.35,23.272,86.139z M19.755,89.079c0.501,0,0.939-0.122,1.313-0.365s0.661-0.587,0.86-1.028
|
115 |
+
c0.2-0.441,0.299-0.945,0.299-1.513c0-0.521-0.125-0.918-0.374-1.19c-0.25-0.273-0.612-0.41-1.087-0.41h-0.621l-0.964,4.508
|
116 |
+
L19.755,89.079L19.755,89.079z"/>
|
117 |
+
<path fill="#FFFFFF" d="M25.628,90.018c-0.558,0-0.993-0.156-1.306-0.472s-0.469-0.753-0.469-1.315s0.11-1.084,0.329-1.565
|
118 |
+
c0.219-0.483,0.517-0.856,0.892-1.12s0.795-0.395,1.26-0.395c0.456,0,0.811,0.103,1.064,0.308c0.253,0.206,0.38,0.497,0.38,0.873
|
119 |
+
c0,0.517-0.236,0.919-0.708,1.209c-0.472,0.29-1.144,0.437-2.016,0.437h-0.183l-0.009,0.131v0.123c0,0.314,0.08,0.562,0.24,0.74
|
120 |
+
c0.16,0.178,0.398,0.268,0.716,0.268c0.204,0,0.406-0.027,0.607-0.082c0.201-0.053,0.439-0.145,0.714-0.275v0.795
|
121 |
+
c-0.272,0.124-0.522,0.213-0.75,0.266C26.163,89.991,25.909,90.018,25.628,90.018z M26.274,85.914
|
122 |
+
c-0.272,0-0.527,0.122-0.767,0.365c-0.239,0.242-0.411,0.564-0.516,0.964h0.124c0.532,0,0.949-0.075,1.249-0.228
|
123 |
+
c0.3-0.15,0.451-0.365,0.451-0.644c0-0.146-0.045-0.257-0.136-0.338C26.587,85.954,26.452,85.914,26.274,85.914z"/>
|
124 |
+
<path fill="#FFFFFF" d="M28.914,89.934l-0.557-4.699h0.985l0.234,2.541c0.04,0.449,0.06,0.871,0.06,1.262h0.03
|
125 |
+
c0.079-0.209,0.178-0.443,0.297-0.701c0.119-0.257,0.211-0.443,0.276-0.561l1.321-2.541h1.062l-2.541,4.699H28.914L28.914,89.934z"
|
126 |
+
/>
|
127 |
+
<path fill="#FFFFFF" d="M34.256,90.018c-0.558,0-0.993-0.156-1.306-0.472s-0.469-0.753-0.469-1.315s0.11-1.084,0.329-1.565
|
128 |
+
c0.219-0.483,0.517-0.856,0.892-1.12s0.795-0.395,1.26-0.395c0.456,0,0.811,0.103,1.064,0.308c0.253,0.206,0.38,0.497,0.38,0.873
|
129 |
+
c0,0.517-0.236,0.919-0.708,1.209c-0.472,0.29-1.144,0.437-2.016,0.437H33.5l-0.009,0.131v0.123c0,0.314,0.08,0.562,0.24,0.74
|
130 |
+
c0.16,0.178,0.398,0.268,0.716,0.268c0.204,0,0.406-0.027,0.607-0.082c0.201-0.053,0.439-0.145,0.714-0.275v0.795
|
131 |
+
c-0.272,0.124-0.522,0.213-0.75,0.266C34.791,89.991,34.537,90.018,34.256,90.018z M34.902,85.914
|
132 |
+
c-0.272,0-0.527,0.122-0.767,0.365c-0.239,0.242-0.411,0.564-0.516,0.964h0.124c0.532,0,0.949-0.075,1.249-0.228
|
133 |
+
c0.3-0.15,0.451-0.365,0.451-0.644c0-0.146-0.045-0.257-0.136-0.338C35.215,85.954,35.08,85.914,34.902,85.914z"/>
|
134 |
+
<path fill="#FFFFFF" d="M37.754,89.934H36.76l1.402-6.611h0.998L37.754,89.934z"/>
|
135 |
+
<path fill="#FFFFFF" d="M43.449,86.993c0,0.571-0.104,1.092-0.31,1.562c-0.206,0.469-0.491,0.828-0.852,1.078
|
136 |
+
c-0.361,0.251-0.777,0.376-1.247,0.376c-0.543,0-0.976-0.161-1.295-0.485c-0.32-0.324-0.48-0.766-0.48-1.323
|
137 |
+
c0-0.563,0.101-1.08,0.304-1.552c0.202-0.469,0.486-0.836,0.852-1.098c0.366-0.262,0.788-0.393,1.266-0.393
|
138 |
+
c0.552,0,0.984,0.164,1.295,0.492S43.449,86.428,43.449,86.993z M42.442,86.95c0-0.304-0.069-0.54-0.208-0.712
|
139 |
+
c-0.139-0.172-0.337-0.256-0.595-0.256c-0.263,0-0.499,0.101-0.707,0.304c-0.208,0.202-0.37,0.478-0.484,0.823
|
140 |
+
c-0.115,0.348-0.172,0.718-0.172,1.111c0,0.313,0.07,0.555,0.21,0.721c0.14,0.168,0.348,0.252,0.623,0.252
|
141 |
+
c0.255,0,0.484-0.096,0.688-0.289c0.204-0.192,0.362-0.463,0.476-0.809C42.385,87.748,42.442,87.367,42.442,86.95z"/>
|
142 |
+
<path fill="#FFFFFF" d="M46.221,90.018c-0.513,0-0.894-0.248-1.143-0.748h-0.042c-0.02,0.275-0.055,0.537-0.106,0.787l-0.408,1.967
|
143 |
+
h-0.99l1.436-6.789h0.782l-0.089,0.8h0.038c0.445-0.589,0.932-0.884,1.461-0.884c0.405,0,0.722,0.146,0.952,0.438
|
144 |
+
s0.344,0.696,0.344,1.215c0,0.578-0.099,1.118-0.297,1.621c-0.198,0.502-0.468,0.895-0.81,1.174
|
145 |
+
C47.007,89.878,46.631,90.018,46.221,90.018z M46.786,85.965c-0.229,0-0.458,0.112-0.684,0.338
|
146 |
+
c-0.227,0.225-0.412,0.523-0.554,0.895c-0.143,0.371-0.215,0.755-0.215,1.15c0,0.272,0.066,0.484,0.198,0.637
|
147 |
+
c0.132,0.152,0.318,0.228,0.559,0.228c0.241,0,0.466-0.11,0.675-0.334s0.375-0.521,0.497-0.892
|
148 |
+
c0.122-0.373,0.183-0.762,0.183-1.168C47.444,86.25,47.225,85.965,46.786,85.965z"/>
|
149 |
+
<path fill="#FFFFFF" d="M52.203,85.148c0.623,0,0.982,0.334,1.079,0.998h0.034c0.213-0.328,0.453-0.576,0.725-0.744
|
150 |
+
c0.271-0.17,0.552-0.254,0.843-0.254c0.378,0,0.664,0.108,0.86,0.326c0.197,0.217,0.295,0.521,0.295,0.914
|
151 |
+
c0,0.182-0.03,0.438-0.094,0.77l-0.594,2.773h-0.998l0.606-2.854c0.054-0.27,0.08-0.458,0.08-0.564
|
152 |
+
c0-0.365-0.171-0.549-0.515-0.549c-0.305,0-0.592,0.176-0.855,0.527c-0.266,0.352-0.458,0.816-0.579,1.396l-0.43,2.043h-0.998
|
153 |
+
l0.606-2.854c0.049-0.232,0.072-0.412,0.072-0.54c0-0.382-0.166-0.573-0.496-0.573c-0.313,0-0.601,0.18-0.865,0.54
|
154 |
+
c-0.265,0.358-0.461,0.839-0.587,1.437l-0.417,1.992h-1.002l1.002-4.699h0.782l-0.089,0.871h0.038
|
155 |
+
C51.127,85.469,51.626,85.148,52.203,85.148z"/>
|
156 |
+
<path fill="#FFFFFF" d="M58.591,90.018c-0.558,0-0.993-0.156-1.306-0.472c-0.313-0.313-0.471-0.753-0.471-1.315
|
157 |
+
s0.109-1.084,0.33-1.565c0.219-0.483,0.517-0.856,0.893-1.12c0.375-0.264,0.795-0.395,1.259-0.395c0.456,0,0.812,0.103,1.063,0.308
|
158 |
+
c0.254,0.206,0.381,0.497,0.381,0.873c0,0.517-0.235,0.919-0.707,1.209c-0.473,0.29-1.145,0.437-2.016,0.437h-0.184l-0.009,0.131
|
159 |
+
v0.123c0,0.314,0.079,0.562,0.239,0.74c0.16,0.178,0.398,0.268,0.717,0.268c0.203,0,0.406-0.027,0.607-0.082
|
160 |
+
c0.2-0.053,0.438-0.145,0.713-0.275v0.795c-0.271,0.124-0.521,0.213-0.75,0.266C59.126,89.991,58.871,90.018,58.591,90.018z
|
161 |
+
M59.236,85.914c-0.271,0-0.527,0.122-0.768,0.365c-0.24,0.242-0.41,0.564-0.516,0.964h0.123c0.531,0,0.947-0.075,1.249-0.228
|
162 |
+
c0.3-0.15,0.45-0.365,0.45-0.644c0-0.146-0.047-0.257-0.137-0.338C59.55,85.954,59.415,85.914,59.236,85.914z"/>
|
163 |
+
<path fill="#FFFFFF" d="M63.878,89.934l0.603-2.854c0.053-0.255,0.078-0.44,0.078-0.558c0-0.371-0.184-0.557-0.549-0.557
|
164 |
+
c-0.203,0-0.404,0.081-0.604,0.242s-0.377,0.395-0.535,0.699c-0.159,0.304-0.277,0.648-0.357,1.033l-0.416,1.992h-1.002
|
165 |
+
l1.002-4.697h0.781l-0.089,0.871h0.038c0.234-0.336,0.479-0.578,0.727-0.729c0.25-0.151,0.521-0.228,0.813-0.228
|
166 |
+
c0.38,0,0.673,0.106,0.882,0.322c0.208,0.215,0.312,0.521,0.312,0.918c0,0.194-0.031,0.451-0.098,0.768l-0.582,2.775h-1.003V89.934
|
167 |
+
z"/>
|
168 |
+
<path fill="#FFFFFF" d="M67.873,89.211c0.191,0,0.406-0.044,0.643-0.132v0.756c-0.1,0.048-0.233,0.091-0.404,0.127
|
169 |
+
c-0.17,0.037-0.34,0.056-0.51,0.056c-0.775,0-1.164-0.35-1.164-1.049c0-0.162,0.022-0.348,0.068-0.557l0.514-2.422h-0.688
|
170 |
+
l0.09-0.467l0.807-0.35l0.549-0.984h0.619l-0.221,1.045h1.186l-0.166,0.756H68.02l-0.52,2.43c-0.036,0.156-0.055,0.286-0.055,0.393
|
171 |
+
c0,0.121,0.035,0.219,0.105,0.291C67.621,89.175,67.729,89.211,67.873,89.211z"/>
|
172 |
+
</g>
|
173 |
+
<g>
|
174 |
+
<path fill="#FFFFFF" d="M22.824,50.781h-3.766l2.282-10.969h-3.053l0.665-3.111h9.9l-0.684,3.111h-3.063L22.824,50.781z"/>
|
175 |
+
<path fill="#FFFFFF" d="M32.064,50.973c-1.342,0-2.377-0.361-3.106-1.087s-1.093-1.763-1.093-3.111s0.255-2.566,0.766-3.655
|
176 |
+
c0.51-1.088,1.228-1.934,2.152-2.538c0.925-0.604,2.003-0.905,3.236-0.905c1.342,0,2.377,0.363,3.106,1.088
|
177 |
+
c0.729,0.726,1.093,1.763,1.093,3.111s-0.255,2.566-0.766,3.655c-0.511,1.088-1.228,1.935-2.152,2.538
|
178 |
+
C34.376,50.672,33.297,50.973,32.064,50.973z M33.586,42.479c-0.527,0-0.978,0.448-1.353,1.344
|
179 |
+
c-0.376,0.896-0.563,1.921-0.563,3.077c0,0.854,0.27,1.281,0.809,1.281c0.521,0,0.973-0.446,1.358-1.339
|
180 |
+
c0.385-0.893,0.578-1.92,0.578-3.082c0-0.423-0.074-0.743-0.222-0.958C34.045,42.586,33.843,42.479,33.586,42.479z"/>
|
181 |
+
<path fill="#FFFFFF" d="M43.424,50.973c-1.342,0-2.377-0.361-3.106-1.087s-1.093-1.763-1.093-3.111s0.255-2.566,0.766-3.655
|
182 |
+
c0.51-1.088,1.228-1.934,2.152-2.538c0.925-0.604,2.003-0.905,3.236-0.905c1.342,0,2.377,0.363,3.106,1.088
|
183 |
+
c0.729,0.726,1.093,1.763,1.093,3.111s-0.255,2.566-0.766,3.655c-0.511,1.088-1.228,1.935-2.152,2.538
|
184 |
+
C45.735,50.672,44.657,50.973,43.424,50.973z M44.946,42.479c-0.527,0-0.978,0.448-1.353,1.344
|
185 |
+
c-0.376,0.896-0.563,1.921-0.563,3.077c0,0.854,0.27,1.281,0.809,1.281c0.521,0,0.973-0.446,1.358-1.339
|
186 |
+
c0.385-0.893,0.578-1.92,0.578-3.082c0-0.423-0.074-0.743-0.222-0.958C45.405,42.586,45.202,42.479,44.946,42.479z"/>
|
187 |
+
<path fill="#FFFFFF" d="M53.725,50.781h-3.728l3.168-14.985h3.728L53.725,50.781z"/>
|
188 |
+
<path fill="#FFFFFF" d="M64.159,46.996c0,1.277-0.418,2.26-1.252,2.947c-0.835,0.687-2.035,1.03-3.603,1.03
|
189 |
+
c-1.426,0-2.568-0.201-3.429-0.605v-2.995c0.591,0.321,1.14,0.546,1.646,0.674c0.508,0.129,1.021,0.193,1.541,0.193
|
190 |
+
c0.438,0,0.765-0.059,0.982-0.178c0.219-0.119,0.327-0.284,0.327-0.496c0-0.225-0.083-0.419-0.25-0.583s-0.585-0.435-1.252-0.814
|
191 |
+
c-0.681-0.372-1.177-0.799-1.488-1.281c-0.312-0.482-0.467-1.069-0.467-1.762c0-1.104,0.39-1.955,1.165-2.552
|
192 |
+
c0.777-0.597,1.881-0.896,3.313-0.896c0.719,0,1.373,0.083,1.965,0.25c0.591,0.167,1.166,0.424,1.725,0.771l-1.166,2.427
|
193 |
+
c-0.424-0.276-0.861-0.496-1.314-0.66c-0.451-0.164-0.843-0.246-1.17-0.246c-0.488,0-0.73,0.218-0.73,0.655
|
194 |
+
c0,0.186,0.101,0.35,0.303,0.491c0.202,0.141,0.531,0.324,0.987,0.549C63.438,44.633,64.159,45.661,64.159,46.996z"/>
|
195 |
+
<path fill="#FFFFFF" d="M69.99,50.973c-1.361,0-2.422-0.38-3.18-1.141c-0.758-0.761-1.137-1.818-1.137-3.173
|
196 |
+
c0-1.354,0.27-2.576,0.805-3.665c0.537-1.088,1.271-1.913,2.205-2.475c0.936-0.562,2.016-0.842,3.241-0.842
|
197 |
+
c1.22,0,2.181,0.276,2.88,0.828c0.699,0.552,1.049,1.287,1.049,2.206c0,1.29-0.502,2.281-1.506,2.971
|
198 |
+
c-1.006,0.69-2.457,1.036-4.357,1.036h-0.568v0.154c0,0.95,0.526,1.425,1.579,1.425c0.507,0,1.005-0.075,1.493-0.226
|
199 |
+
c0.486-0.151,1.043-0.39,1.666-0.718v2.639c-0.721,0.366-1.391,0.621-2.014,0.766C71.523,50.9,70.805,50.973,69.99,50.973z
|
200 |
+
M71.512,42.2c-0.392,0-0.758,0.223-1.099,0.669c-0.34,0.446-0.545,0.952-0.616,1.517h0.279c0.699,0,1.249-0.133,1.646-0.399
|
201 |
+
c0.397-0.267,0.598-0.618,0.598-1.055c0-0.206-0.064-0.379-0.192-0.52C71.999,42.271,71.794,42.2,71.512,42.2z"/>
|
202 |
+
<path fill="#FFFFFF" d="M81.139,47.978c0.424,0,1.012-0.15,1.762-0.453v2.803c-0.873,0.43-1.963,0.645-3.273,0.645
|
203 |
+
c-0.95,0-1.671-0.203-2.162-0.611c-0.49-0.407-0.736-1.077-0.736-2.008c0-0.488,0.078-1.092,0.231-1.811l0.81-3.872h-1.483
|
204 |
+
l0.396-1.83l2.101-0.848l1.319-2.311h2.483l-0.472,2.186h2.773l-0.607,2.803h-2.782l-0.81,3.688
|
205 |
+
c-0.104,0.494-0.154,0.832-0.154,1.011C80.531,47.776,80.732,47.978,81.139,47.978z"/>
|
206 |
+
</g>
|
207 |
+
</svg>
|
@@ -1,14 +1,15 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
|
9 |
-
c0.
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
13 |
</g>
|
14 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M17,35.775c0-0.619,0.346-1.158,0.552-1.352
|
8 |
+
C17.757,34.233,18.419,34,19.053,34h1.227c0.882,0,1.452,0.052,1.709-0.121c0.258-0.169,0.492-0.565,0.703-1.314l0.238-0.875
|
9 |
+
c0.158-0.567,0.38-1.111,0.671-1.281C23.89,30.251,24.457,30,25.299,30h7.317c0.75,0,1.234,0.266,1.452,0.417
|
10 |
+
c0.218,0.151,0.413,0.646,0.584,1.291l0.237,0.955c0.184,0.753,0.422,1.089,0.712,1.233C35.891,34.042,36.656,34,37.895,34h13.74
|
11 |
+
C52.625,34,53,34.779,53,35.794V38H30.104c-1.437,0-2.326-0.055-2.67,0.145c-0.341,0.195-1.068,0.817-1.688,2.018L17,56.654V35.775
|
12 |
+
z M64.018,42.542L55.26,60H19.889l8.957-17.52c0.303-0.605,0.6-1.022,0.89-1.194c0.29-0.17,0.816-0.286,1.582-0.286h31.911
|
13 |
+
c0.775,0,1.186,0.167,1.226,0.441C64.453,41.523,64.309,41.908,64.018,42.542z"/>
|
14 |
</g>
|
15 |
</svg>
|
@@ -1,15 +1,15 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<path fill="#333333" d="
|
8 |
-
|
9 |
-
<path fill="#333333" d="
|
10 |
-
c-1.
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
</g>
|
15 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<path fill="#333333" d="M63.229,41H31.318c-0.766,0-1.292,0.165-1.583,0.335c-0.29,0.172-0.586,0.501-0.89,1.106L19.889,60H55.26
|
8 |
+
l8.758-17.458c0.291-0.634,0.437-1.019,0.437-1.101C64.413,41.167,64.004,41,63.229,41z"/>
|
9 |
+
<path fill="#333333" d="M27.435,38.145c0.344-0.2,1.233-0.145,2.669-0.145H53v-2.206C53,34.779,52.625,34,51.635,34h-13.74
|
10 |
+
c-1.239,0-2.003,0.066-2.293-0.081c-0.29-0.144-0.528-0.524-0.712-1.277l-0.237-0.874c-0.171-0.645-0.366-1.217-0.584-1.369
|
11 |
+
C33.851,30.249,33.367,30,32.617,30H25.3c-0.842,0-1.409,0.269-1.7,0.426c-0.291,0.17-0.513,0.636-0.671,1.204l-0.238,0.956
|
12 |
+
c-0.21,0.749-0.445,1.101-0.703,1.27C21.731,34.028,21.162,34,20.279,34h-1.227c-0.633,0-1.295,0.233-1.501,0.424
|
13 |
+
C17.346,34.617,17,35.156,17,35.775v20.879l8.747-16.492C26.366,38.962,27.093,38.34,27.435,38.145z"/>
|
14 |
</g>
|
15 |
</svg>
|
@@ -1,13 +1,15 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
<g>
|
7 |
-
<
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
</g>
|
13 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
<g>
|
7 |
+
<g>
|
8 |
+
<path fill="#333333" d="M58,16V4H46v12H34V4H22v12H10v60h60V16H58z M18.673,46.146c0,0,19.355-26.336,43.155,0
|
9 |
+
C61.828,46.146,42.473,73.117,18.673,46.146z"/>
|
10 |
+
<path fill="#333333" d="M40.249,38.155c-4.489,0-8.13,3.642-8.13,8.134c0,4.488,3.641,8.131,8.13,8.131
|
11 |
+
c4.494,0,8.134-3.643,8.134-8.131C48.383,41.797,44.742,38.155,40.249,38.155z M40.249,51.648c-2.958,0-5.359-2.4-5.359-5.359
|
12 |
+
c0-2.962,2.401-5.361,5.359-5.361c2.962,0,5.362,2.399,5.362,5.361C45.611,49.248,43.211,51.648,40.249,51.648z"/>
|
13 |
+
</g>
|
14 |
</g>
|
15 |
</svg>
|
@@ -1,13 +1,13 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
-
|
6 |
-
<
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
4 |
+
<svg version="1.1" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
5 |
+
x="0px" y="0px" width="80px" height="80px" viewBox="0 0 80 80" xml:space="preserve">
|
6 |
+
<path fill="#333333" d="M18.673,46.146c23.8,26.971,43.155,0,43.155,0C38.028,19.81,18.673,46.146,18.673,46.146z M40.249,54.42
|
7 |
+
c-4.489,0-8.13-3.643-8.13-8.131c0-4.492,3.641-8.134,8.13-8.134c4.494,0,8.134,3.642,8.134,8.134
|
8 |
+
C48.383,50.777,44.742,54.42,40.249,54.42z"/>
|
9 |
+
<path fill="#333333" d="M40.249,51.648c-2.958,0-5.359-2.4-5.359-5.359c0-2.962,2.401-5.361,5.359-5.361
|
10 |
+
c2.962,0,5.362,2.399,5.362,5.361C45.611,49.248,43.211,51.648,40.249,51.648z"/>
|
11 |
+
<path fill="#333333" d="M40.249,40.928c-2.958,0-5.359,2.399-5.359,5.361c0,2.959,2.401,5.359,5.359,5.359
|
12 |
+
c2.962,0,5.362-2.4,5.362-5.359C45.611,43.327,43.211,40.928,40.249,40.928z"/>
|
13 |
</svg>
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Usage:
|
2 |
+
|
3 |
+
cd "to a folder of your choice"
|
4 |
+
|
5 |
+
mkdir onthegosystems-icons
|
6 |
+
|
7 |
+
svn checkout https://www.onthegosystems.com/misc_svn/onthegosystems-branding/trunk/ onthegosystems-icons
|
8 |
+
|
9 |
+
cd onthegosystems-icons
|
10 |
+
|
11 |
+
fontcustom compile
|
@@ -1,7 +1,7 @@
|
|
1 |
/**
|
2 |
*
|
3 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6/embedded/resources/css/dashicons.css $
|
4 |
-
* $LastChangedDate: 2014-05-08
|
5 |
* $LastChangedRevision: 22156 $
|
6 |
* $LastChangedBy: marcin $
|
7 |
*
|
1 |
/**
|
2 |
*
|
3 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6.3/embedded/resources/css/dashicons.css $
|
4 |
+
* $LastChangedDate: 2014-05-08 15:13:42 +0200 (Thu, 08 May 2014) $
|
5 |
* $LastChangedRevision: 22156 $
|
6 |
* $LastChangedBy: marcin $
|
7 |
*
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -4,9 +4,9 @@
|
|
4 |
* For now full and embedded version use this script.
|
5 |
* Before moving full-version-only code - make sure it's not needed here.
|
6 |
*
|
7 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6/embedded/resources/js/basic.js $
|
8 |
-
* $LastChangedDate: 2014-
|
9 |
-
* $LastChangedRevision:
|
10 |
* $LastChangedBy: marcin $
|
11 |
*
|
12 |
*/
|
4 |
* For now full and embedded version use this script.
|
5 |
* Before moving full-version-only code - make sure it's not needed here.
|
6 |
*
|
7 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6.3/embedded/resources/js/basic.js $
|
8 |
+
* $LastChangedDate: 2014-09-11 10:36:28 +0200 (Thu, 11 Sep 2014) $
|
9 |
+
* $LastChangedRevision: 26949 $
|
10 |
* $LastChangedBy: marcin $
|
11 |
*
|
12 |
*/
|
@@ -9,8 +9,8 @@
|
|
9 |
* @since Types 1.1.5
|
10 |
* @autor srdjan
|
11 |
*
|
12 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6/embedded/resources/js/fields-form.js $
|
13 |
-
* $LastChangedDate: 2014-07-11
|
14 |
* $LastChangedRevision: 24859 $
|
15 |
* $LastChangedBy: bruce $
|
16 |
*
|
9 |
* @since Types 1.1.5
|
10 |
* @autor srdjan
|
11 |
*
|
12 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6.3/embedded/resources/js/fields-form.js $
|
13 |
+
* $LastChangedDate: 2014-07-11 06:20:46 +0200 (Fri, 11 Jul 2014) $
|
14 |
* $LastChangedRevision: 24859 $
|
15 |
* $LastChangedBy: bruce $
|
16 |
*
|
@@ -10,10 +10,10 @@ $fields_access = new Post_Fields_Access;
|
|
10 |
* @author Gen gen.i@icanlocalize.com
|
11 |
* @since Types 1.3
|
12 |
*
|
13 |
-
* $HeadURL:
|
14 |
-
* $LastChangedDate: 2014-
|
15 |
-
* $LastChangedRevision:
|
16 |
-
* $LastChangedBy:
|
17 |
*
|
18 |
*/
|
19 |
function wpcf_admin_menu_edit_user_fields_hook() {
|
@@ -792,7 +792,7 @@ class Usermeta_Access
|
|
792 |
*/
|
793 |
public function __construct() {
|
794 |
// setup custom capabilities
|
795 |
-
self::$user_groups = wpcf_admin_fields_get_groups();
|
796 |
//If access plugin installed
|
797 |
if ( function_exists( 'wpcf_access_register_caps' ) ) { // integrate with Types Access
|
798 |
if ( !empty( self::$user_groups ) ) {
|
@@ -1004,25 +1004,15 @@ add_action( 'wp_ajax_wpcf_types_suggest_user',
|
|
1004 |
/**
|
1005 |
* Suggest user AJAX.
|
1006 |
*/
|
1007 |
-
function wpcf_access_wpcf_types_suggest_user_ajax()
|
|
|
1008 |
global $wpdb;
|
1009 |
-
/* $users = array();
|
1010 |
-
$q = $wpdb->escape(trim($_POST['q']));
|
1011 |
-
$q = like_escape($q);
|
1012 |
-
$found = $wpdb->get_results("SELECT ID, display_name, user_login FROM $wpdb->users WHERE user_nicename LIKE '%%$q%%' OR user_login LIKE '%%$q%%' OR display_name LIKE '%%$q%%' OR user_email LIKE '%%$q%%' LIMIT 10");
|
1013 |
-
if (!empty($found)) {
|
1014 |
-
foreach ($found as $user) {
|
1015 |
-
$users[$user->user_login] = $user->display_name . ' (' . $user->user_login . ')';
|
1016 |
-
}
|
1017 |
-
} */
|
1018 |
$users = '';
|
1019 |
-
$q = esc_sql( trim( $_GET['q'] ) );
|
1020 |
-
$q = like_escape( $q );
|
1021 |
$found = $wpdb->get_results( "SELECT ID, display_name, user_login FROM $wpdb->users WHERE user_nicename LIKE '%%$q%%' OR user_login LIKE '%%$q%%' OR display_name LIKE '%%$q%%' OR user_email LIKE '%%$q%%' LIMIT 10" );
|
1022 |
|
1023 |
if ( !empty( $found ) ) {
|
1024 |
foreach ( $found as $user ) {
|
1025 |
-
//$users[$user->user_login] = $user->display_name . ' (' . $user->user_login . ')';
|
1026 |
$users .= '<li>' . $user->user_login . '</li>';
|
1027 |
}
|
1028 |
}
|
10 |
* @author Gen gen.i@icanlocalize.com
|
11 |
* @since Types 1.3
|
12 |
*
|
13 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/embedded/usermeta-init.php $
|
14 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
15 |
+
* $LastChangedRevision: 1012704 $
|
16 |
+
* $LastChangedBy: iworks $
|
17 |
*
|
18 |
*/
|
19 |
function wpcf_admin_menu_edit_user_fields_hook() {
|
792 |
*/
|
793 |
public function __construct() {
|
794 |
// setup custom capabilities
|
795 |
+
self::$user_groups = wpcf_admin_fields_get_groups('wp-types-user-group');
|
796 |
//If access plugin installed
|
797 |
if ( function_exists( 'wpcf_access_register_caps' ) ) { // integrate with Types Access
|
798 |
if ( !empty( self::$user_groups ) ) {
|
1004 |
/**
|
1005 |
* Suggest user AJAX.
|
1006 |
*/
|
1007 |
+
function wpcf_access_wpcf_types_suggest_user_ajax()
|
1008 |
+
{
|
1009 |
global $wpdb;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
$users = '';
|
1011 |
+
$q = wptoolset_esc_like(esc_sql( trim( $_GET['q'] ) ));
|
|
|
1012 |
$found = $wpdb->get_results( "SELECT ID, display_name, user_login FROM $wpdb->users WHERE user_nicename LIKE '%%$q%%' OR user_login LIKE '%%$q%%' OR display_name LIKE '%%$q%%' OR user_email LIKE '%%$q%%' LIMIT 10" );
|
1013 |
|
1014 |
if ( !empty( $found ) ) {
|
1015 |
foreach ( $found as $user ) {
|
|
|
1016 |
$users .= '<li>' . $user->user_login . '</li>';
|
1017 |
}
|
1018 |
}
|
@@ -560,25 +560,17 @@ class Types_Image_Utils
|
|
560 |
|
561 |
/**
|
562 |
* Normalize attachment URL.
|
563 |
-
*
|
564 |
* @param type $file
|
565 |
* @return string
|
566 |
*/
|
567 |
-
public static function normalizeAttachmentUrl( $file )
|
|
|
568 |
$upload_info = self::uploadInfo();
|
569 |
if ( $upload_info ) {
|
570 |
-
$file = ltrim( str_replace( $upload_info['basedir'], '',
|
571 |
-
|
572 |
-
$matches = null;
|
573 |
-
|
574 |
-
if ( preg_match( '~(\d{4}/\d{2}/)?[^/]+$~', $file, $matches ) ) {
|
575 |
-
$file = $matches[0];
|
576 |
-
}
|
577 |
-
|
578 |
-
$file = $upload_info['baseurl'] . '/' . str_replace( '\\', '/',
|
579 |
-
$file );
|
580 |
}
|
581 |
-
|
582 |
return $file;
|
583 |
}
|
584 |
|
560 |
|
561 |
/**
|
562 |
* Normalize attachment URL.
|
563 |
+
*
|
564 |
* @param type $file
|
565 |
* @return string
|
566 |
*/
|
567 |
+
public static function normalizeAttachmentUrl( $file )
|
568 |
+
{
|
569 |
$upload_info = self::uploadInfo();
|
570 |
if ( $upload_info ) {
|
571 |
+
$file = ltrim( str_replace( $upload_info['basedir'], '', self::realpath( $file ) ), '/\\' );
|
572 |
+
$file = $upload_info['baseurl'] . '/' . str_replace( '\\', '/', $file );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
}
|
|
|
574 |
return $file;
|
575 |
}
|
576 |
|
@@ -2,9 +2,9 @@
|
|
2 |
/*
|
3 |
* Plugin contextual help
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/help.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
2 |
/*
|
3 |
* Plugin contextual help
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/help.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
@@ -244,6 +244,31 @@ function wpcf_ajax() {
|
|
244 |
$custom_types = get_option('wpcf-custom-types', array());
|
245 |
$custom_type = strval($_GET['wpcf-post-type']);
|
246 |
unset($custom_types[$custom_type]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
update_option('wpcf-custom-types', $custom_types);
|
248 |
wpcf_admin_deactivate_content('post_type', $custom_type);
|
249 |
echo json_encode(array(
|
244 |
$custom_types = get_option('wpcf-custom-types', array());
|
245 |
$custom_type = strval($_GET['wpcf-post-type']);
|
246 |
unset($custom_types[$custom_type]);
|
247 |
+
/**
|
248 |
+
* remove post relation
|
249 |
+
*/
|
250 |
+
foreach ( array_keys($custom_types) as $post_type ) {
|
251 |
+
if ( array_key_exists( 'post_relationship', $custom_types[$post_type] ) ) {
|
252 |
+
/**
|
253 |
+
* remove "has" relation
|
254 |
+
*/
|
255 |
+
if (
|
256 |
+
array_key_exists( 'has', $custom_types[$post_type]['post_relationship'] )
|
257 |
+
&& array_key_exists( $custom_type, $custom_types[$post_type]['post_relationship']['has'] )
|
258 |
+
) {
|
259 |
+
unset($custom_types[$post_type]['post_relationship']['has'][$custom_type]);
|
260 |
+
}
|
261 |
+
/**
|
262 |
+
* remove "belongs" relation
|
263 |
+
*/
|
264 |
+
if (
|
265 |
+
array_key_exists( 'belongs', $custom_types[$post_type]['post_relationship'] )
|
266 |
+
&& array_key_exists( $custom_type, $custom_types[$post_type]['post_relationship']['belongs'] )
|
267 |
+
) {
|
268 |
+
unset($custom_types[$post_type]['post_relationship']['belongs'][$custom_type]);
|
269 |
+
}
|
270 |
+
}
|
271 |
+
}
|
272 |
update_option('wpcf-custom-types', $custom_types);
|
273 |
wpcf_admin_deactivate_content('post_type', $custom_type);
|
274 |
echo json_encode(array(
|
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Custom taxonomies form
|
5 |
*
|
6 |
-
* $HeadURL:
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
*
|
4 |
* Custom taxonomies form
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/custom-taxonomies-form.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -3,10 +3,10 @@
|
|
3 |
*
|
4 |
* Custom types form
|
5 |
*
|
6 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/includes/custom-types-form.php $
|
7 |
-
* $LastChangedDate: 2014-
|
8 |
-
* $LastChangedRevision:
|
9 |
-
* $LastChangedBy:
|
10 |
*
|
11 |
*/
|
12 |
|
3 |
*
|
4 |
* Custom types form
|
5 |
*
|
6 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/custom-types-form.php $
|
7 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
8 |
+
* $LastChangedRevision: 1012704 $
|
9 |
+
* $LastChangedBy: iworks $
|
10 |
*
|
11 |
*/
|
12 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Custom Fields Control Screen
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once ABSPATH . '/wp-admin/includes/class-wp-list-table.php';
|
2 |
/*
|
3 |
* Custom Fields Control Screen
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/fields-control.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once ABSPATH . '/wp-admin/includes/class-wp-list-table.php';
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Fields and groups form functions.
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/includes/fields-form.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_ABSPATH . '/classes/validate.php';
|
2 |
/*
|
3 |
* Fields and groups form functions.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/fields-form.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_ABSPATH . '/classes/validate.php';
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Fields and groups list functions
|
4 |
*
|
5 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/includes/fields-list.php $
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/*
|
3 |
* Fields and groups list functions
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/fields-list.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Fields and groups functions
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/fields.php';
|
2 |
/*
|
3 |
* Fields and groups functions
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/fields.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/fields.php';
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Import/export data.
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/import-export.php';
|
2 |
/*
|
3 |
* Import/export data.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/import-export.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_INC_ABSPATH . '/import-export.php';
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Introduction page.
|
4 |
*
|
5 |
-
* $HeadURL: $
|
6 |
-
* $LastChangedDate: $
|
7 |
-
* $LastChangedRevision: $
|
8 |
-
* $LastChangedBy: $
|
9 |
*
|
10 |
*/
|
11 |
|
2 |
/*
|
3 |
* Introduction page.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/introduction.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Custom Fields Control Screen
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
/**
|
2 |
/*
|
3 |
* Custom Fields Control Screen
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/usermeta-control.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
/**
|
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
* Fields and groups form functions.
|
4 |
*
|
5 |
-
* $HeadURL:
|
6 |
-
* $LastChangedDate: 2014-
|
7 |
-
* $LastChangedRevision:
|
8 |
-
* $LastChangedBy:
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_ABSPATH . '/classes/validate.php';
|
2 |
/*
|
3 |
* Fields and groups form functions.
|
4 |
*
|
5 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/includes/usermeta-form.php $
|
6 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
7 |
+
* $LastChangedRevision: 1012704 $
|
8 |
+
* $LastChangedBy: iworks $
|
9 |
*
|
10 |
*/
|
11 |
require_once WPCF_EMBEDDED_ABSPATH . '/classes/validate.php';
|
@@ -74,4 +74,15 @@ function types_marketing_message_usermeta_saved($message, $title, $update) {
|
|
74 |
$message = ob_get_contents();
|
75 |
ob_end_clean();
|
76 |
return $message;
|
77 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
$message = ob_get_contents();
|
75 |
ob_end_clean();
|
76 |
return $message;
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Ask Types users for feedback on their work
|
81 |
+
* https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188885189/comments
|
82 |
+
*/
|
83 |
+
include_once dirname(__FILE__).'/marketing/types_marketing_message_survey_2014_09.php';
|
84 |
+
function types_marketing_message_survey_2014_09_helper()
|
85 |
+
{
|
86 |
+
new types_marketing_message_survey_2014_09();
|
87 |
+
}
|
88 |
+
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
*
|
4 |
+
* Ask Types users for feedback on their work
|
5 |
+
* https://icanlocalize.basecamphq.com/projects/7393061-toolset/todo_items/188885189/comments
|
6 |
+
*
|
7 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/marketing/types_marketing_message_survey_2014_09.php $
|
8 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
9 |
+
* $LastChangedRevision: 1012704 $
|
10 |
+
* $LastChangedBy: iworks $
|
11 |
+
*
|
12 |
+
*/
|
13 |
+
|
14 |
+
class types_marketing_message_survey_2014_09
|
15 |
+
{
|
16 |
+
private $option_name = 'wpcf-survey-2014-09';
|
17 |
+
|
18 |
+
public function __construct()
|
19 |
+
{
|
20 |
+
/**
|
21 |
+
* get survey status
|
22 |
+
*/
|
23 |
+
$suvery = get_option($this->option_name);
|
24 |
+
/**
|
25 |
+
* if empty just create a event day
|
26 |
+
*/
|
27 |
+
if ( empty( $suvery ) ) {
|
28 |
+
add_option($this->option_name,time()+14*DAY_IN_SECONDS);
|
29 |
+
return;
|
30 |
+
}
|
31 |
+
/**
|
32 |
+
* do not show if is dismissed
|
33 |
+
*/
|
34 |
+
if ( 'dismiss' == $suvery ) {
|
35 |
+
return;
|
36 |
+
}
|
37 |
+
/**
|
38 |
+
* do propper action
|
39 |
+
*/
|
40 |
+
switch( $suvery ) {
|
41 |
+
/**
|
42 |
+
* do not show
|
43 |
+
*/
|
44 |
+
case 'dismiss':
|
45 |
+
break;
|
46 |
+
/**
|
47 |
+
* show
|
48 |
+
*/
|
49 |
+
case 'show':
|
50 |
+
break;
|
51 |
+
default:
|
52 |
+
if ( time() - $suvery > 0 ) {
|
53 |
+
add_action( 'admin_notices', array($this, 'admin_notice' ) );
|
54 |
+
add_action( 'wp_ajax_types_marketing_message_survey_2014_09_action', array($this,'ajax_action') );
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
public function admin_notice()
|
60 |
+
{
|
61 |
+
wp_enqueue_script(
|
62 |
+
__FUNCTION__,
|
63 |
+
plugin_dir_url(__FILE__).'types_marketing_message_survey_2014_09_admin_notice.js',
|
64 |
+
array('jquery')
|
65 |
+
);
|
66 |
+
wp_localize_script(
|
67 |
+
__FUNCTION__,
|
68 |
+
'wpcf_survey_2014_09',
|
69 |
+
array(
|
70 |
+
'dismiss' => __( 'Are you sure you want to skip Types survey?', 'wpcf' ),
|
71 |
+
'done' => 'done' == get_option($this->option_name)
|
72 |
+
)
|
73 |
+
);
|
74 |
+
echo '<div class="updated" id="types_marketing_message_survey_2014_09">';
|
75 |
+
echo '<p>';
|
76 |
+
_e('Types development team is working on major new features. We need your feedback, so that Types can do what you need.', 'wpcf' );
|
77 |
+
echo '</p>';
|
78 |
+
echo '<p>';
|
79 |
+
printf(
|
80 |
+
'<a href="https://www.surveymonkey.com/s/i-do-with-types" class="survey button button-primary">%s</a>',
|
81 |
+
__('5 Minute Survey', 'wpcf')
|
82 |
+
);
|
83 |
+
printf( ' <a href="#" class="later">%s</a>', __('Remind me later', 'wpcf'));
|
84 |
+
printf( ' | <a href="#" class="dismiss">%s</a>', __('Dismiss', 'wpcf'));
|
85 |
+
echo '</p>';
|
86 |
+
echo '</div>';
|
87 |
+
}
|
88 |
+
|
89 |
+
public function ajax_action()
|
90 |
+
{
|
91 |
+
switch( $_POST['do'] ) {
|
92 |
+
case 'dismiss':
|
93 |
+
update_option($this->option_name,'dismiss');
|
94 |
+
break;
|
95 |
+
case 'later':
|
96 |
+
update_option($this->option_name,time()+2*DAY_IN_SECONDS);
|
97 |
+
break;
|
98 |
+
case 'go':
|
99 |
+
update_option($this->option_name,'done');
|
100 |
+
break;
|
101 |
+
}
|
102 |
+
die();
|
103 |
+
}
|
104 |
+
}
|
105 |
+
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery( document ).ready(function($) {
|
2 |
+
$('#types_marketing_message_survey_2014_09 .survey').bind('click', function() {
|
3 |
+
$.post(ajaxurl,{ action: 'types_marketing_message_survey_2014_09_action', do: 'go' }, function() {
|
4 |
+
wpcf_survey_2014_09.done = true;
|
5 |
+
});
|
6 |
+
$(this).attr('target','_new');
|
7 |
+
return true;
|
8 |
+
});
|
9 |
+
$('#types_marketing_message_survey_2014_09 .later').bind('click', function() {
|
10 |
+
$.post(ajaxurl,{ action: 'types_marketing_message_survey_2014_09_action', do: 'later' }, function() {
|
11 |
+
$('#types_marketing_message_survey_2014_09').hide();
|
12 |
+
});
|
13 |
+
return false;
|
14 |
+
});
|
15 |
+
$('#types_marketing_message_survey_2014_09 .dismiss').bind('click', function() {
|
16 |
+
if ( wpcf_survey_2014_09.done || confirm( wpcf_survey_2014_09.dismiss ) ) {
|
17 |
+
$.post(ajaxurl,{ action: 'types_marketing_message_survey_2014_09_action', do: 'dismiss' }, function() {
|
18 |
+
$('#types_marketing_message_survey_2014_09').hide();
|
19 |
+
});
|
20 |
+
}
|
21 |
+
return false;
|
22 |
+
});
|
23 |
+
});
|
24 |
+
|
@@ -5,7 +5,7 @@ Tags: CMS, custom field, custom fields, custom post type, custom post types, pos
|
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.0
|
8 |
-
Stable tag: 1.6
|
9 |
|
10 |
The complete and reliable plugin for managing custom post types, custom taxonomy and custom fields.
|
11 |
|
@@ -151,6 +151,37 @@ Additionally, Types is the only plugin that lets you define parent/child relatio
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
= 1.6 =
|
155 |
|
156 |
* Added ability to add extra options by filter *wpt_field_options* to fields with "options".
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.0
|
8 |
+
Stable tag: 1.6.3
|
9 |
|
10 |
The complete and reliable plugin for managing custom post types, custom taxonomy and custom fields.
|
11 |
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 1.6.3 =
|
155 |
+
|
156 |
+
* Added the message to ask users to answer a short survey for feedback on their work using the Types plugin.
|
157 |
+
|
158 |
+
* Fixed a problem where the custom field group’s description was missing from the post/page editing page. http://wp-types.com/forums/topic/custom-field-group-descriptions-no-longer-visible-in-cpt-add-newedit-screen/
|
159 |
+
|
160 |
+
* Fixed a problem where the field descriptions weren’t displayed on the user profile editing page. http://wp-types.com/forums/topic/checkbox-description-fields-no-longer-display-in-types-1-6-2/
|
161 |
+
|
162 |
+
* Fixed a problem where users weren’t able to untick the single and multiple checkbox fields on the user profile editing page.
|
163 |
+
|
164 |
+
* Fixed a problem where the value of date field couldn’t be cleared and added new button which clears the date field value. http://wp-types.com/forums/topic/problem-2-after-update/
|
165 |
+
|
166 |
+
* Replaced the deprecated like_escape function with the wpdb::esc_like function.
|
167 |
+
|
168 |
+
* Fixed a problem where the parent-child relations between custom post types persisted after deleting and re-creating a custom post type.
|
169 |
+
|
170 |
+
* Fixed a problem where date picker scripts were being enqueued in the front end. https://wordpress.org/support/topic/datepicker-css-enqueued-on-public
|
171 |
+
|
172 |
+
= 1.6.2 =
|
173 |
+
|
174 |
+
* Fix addslashes warning
|
175 |
+
* Fix display problems with Types shortcodes
|
176 |
+
* Fix PHP error for checkboxes
|
177 |
+
|
178 |
+
= 1.6.1 =
|
179 |
+
|
180 |
+
* Fix Formfactory::createForm and Formfactory::displayForm errors on some systems
|
181 |
+
* Fix anonymous function problem with wysiwyg field
|
182 |
+
* Fix datepicker.css so it only styles the datepicker popup
|
183 |
+
* Fix escaping problems with the Types shortcode
|
184 |
+
|
185 |
= 1.6 =
|
186 |
|
187 |
* Added ability to add extra options by filter *wpt_field_options* to fields with "options".
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -3,8 +3,8 @@
|
|
3 |
* Use this file only for scripts needed in full version.
|
4 |
* Before moving from embedded JS - make sure it's needed only here.
|
5 |
*
|
6 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6/resources/js/basic.js $
|
7 |
-
* $LastChangedDate: 2014-07-04
|
8 |
* $LastChangedRevision: 24633 $
|
9 |
* $LastChangedBy: marcin $
|
10 |
*
|
3 |
* Use this file only for scripts needed in full version.
|
4 |
* Before moving from embedded JS - make sure it's needed only here.
|
5 |
*
|
6 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6.3/resources/js/basic.js $
|
7 |
+
* $LastChangedDate: 2014-07-04 12:19:40 +0200 (Fri, 04 Jul 2014) $
|
8 |
* $LastChangedRevision: 24633 $
|
9 |
* $LastChangedBy: marcin $
|
10 |
*
|
@@ -2,8 +2,8 @@
|
|
2 |
*
|
3 |
* Custom Types form JS
|
4 |
*
|
5 |
-
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6/resources/js/custom-types-form.js $
|
6 |
-
* $LastChangedDate: 2014-05-13
|
7 |
* $LastChangedRevision: 22267 $
|
8 |
* $LastChangedBy: marcin $
|
9 |
*
|
2 |
*
|
3 |
* Custom Types form JS
|
4 |
*
|
5 |
+
* $HeadURL: https://www.onthegosystems.com/misc_svn/cck/tags/1.6.3/resources/js/custom-types-form.js $
|
6 |
+
* $LastChangedDate: 2014-05-13 12:49:25 +0200 (Tue, 13 May 2014) $
|
7 |
* $LastChangedRevision: 22267 $
|
8 |
* $LastChangedBy: marcin $
|
9 |
*
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,34 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
* Update functions
|
4 |
-
*/
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Main upgrade function.
|
8 |
-
*/
|
9 |
-
function wpcf_upgrade() {
|
10 |
-
$upgrade_failed = false;
|
11 |
-
$upgrade_debug = array();
|
12 |
-
$version = get_option('wpcf-version', false);
|
13 |
-
if (empty($version)) {
|
14 |
-
$version = WPCF_VERSION;
|
15 |
-
}
|
16 |
-
if (version_compare($version, WPCF_VERSION, '<')) {
|
17 |
-
$first_step = str_replace('.', '', $version);
|
18 |
-
$last_step = str_replace('.', '', WPCF_VERSION);
|
19 |
-
for ($index = $first_step; $index <= $last_step; $index++) {
|
20 |
-
if (function_exists('wpcf_upgrade_' . $index)) {
|
21 |
-
$response = call_user_func('wpcf_upgrade_' . $index);
|
22 |
-
if ($response !== true) {
|
23 |
-
$upgrade_failed = true;
|
24 |
-
$upgrade_debug[$first_step][$index] = $response;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
}
|
28 |
-
}
|
29 |
-
if ($upgrade_failed == true) {
|
30 |
-
update_option('wpcf_upgrade_debug', $upgrade_debug);
|
31 |
-
// @todo Add perm message to display for admin
|
32 |
-
}
|
33 |
-
update_option('wpcf-version', WPCF_VERSION);
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -5,14 +5,14 @@
|
|
5 |
Description: Define custom post types, custom taxonomy and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
-
Version: 1.6
|
9 |
*/
|
10 |
/**
|
11 |
*
|
12 |
-
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6/wpcf.php $
|
13 |
-
* $LastChangedDate: 2014-
|
14 |
-
* $LastChangedRevision:
|
15 |
-
* $LastChangedBy:
|
16 |
*
|
17 |
*/
|
18 |
// Added check because of activation hook and theme embedded code
|
@@ -20,7 +20,7 @@ if ( !defined( 'WPCF_VERSION' ) ) {
|
|
20 |
/**
|
21 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
22 |
*/
|
23 |
-
define( 'WPCF_VERSION', '1.6' );
|
24 |
}
|
25 |
|
26 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|
@@ -124,8 +124,6 @@ function wpcf_wp_init()
|
|
124 |
*/
|
125 |
function wpcf_upgrade_init()
|
126 |
{
|
127 |
-
//require_once WPCF_ABSPATH . '/upgrade.php';
|
128 |
-
//wpcf_upgrade();
|
129 |
wpcf_types_plugin_activate();
|
130 |
}
|
131 |
|
5 |
Description: Define custom post types, custom taxonomy and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
+
Version: 1.6.3
|
9 |
*/
|
10 |
/**
|
11 |
*
|
12 |
+
* $HeadURL: http://plugins.svn.wordpress.org/types/tags/1.6.3/wpcf.php $
|
13 |
+
* $LastChangedDate: 2014-10-23 10:56:37 +0000 (Thu, 23 Oct 2014) $
|
14 |
+
* $LastChangedRevision: 1012704 $
|
15 |
+
* $LastChangedBy: iworks $
|
16 |
*
|
17 |
*/
|
18 |
// Added check because of activation hook and theme embedded code
|
20 |
/**
|
21 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
22 |
*/
|
23 |
+
define( 'WPCF_VERSION', '1.6.3' );
|
24 |
}
|
25 |
|
26 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|
124 |
*/
|
125 |
function wpcf_upgrade_init()
|
126 |
{
|
|
|
|
|
127 |
wpcf_types_plugin_activate();
|
128 |
}
|
129 |
|