├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── documentation.yml │ ├── linting.yml │ ├── nightly-rubies-checks.yml │ └── ruby.yml ├── .gitignore ├── .markdownlint.json ├── .overcommit.yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── .yamllint.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── example └── file_verification │ ├── README.md │ └── file_verification.rb ├── lib ├── ooxml_parser.rb ├── ooxml_parser │ ├── common_parser.rb │ ├── common_parser │ │ ├── common_data │ │ │ ├── alternate_content │ │ │ │ ├── alternate_content.rb │ │ │ │ ├── alternate_content │ │ │ │ │ ├── chart_style.rb │ │ │ │ │ ├── choice.rb │ │ │ │ │ └── choice │ │ │ │ │ │ ├── math_text.rb │ │ │ │ │ │ └── math_text │ │ │ │ │ │ └── math_paragraph.rb │ │ │ │ ├── chart │ │ │ │ │ ├── chart.rb │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── chart_style_file.rb │ │ │ │ │ │ ├── chart_style_file │ │ │ │ │ │ │ ├── chart_style_entry.rb │ │ │ │ │ │ │ └── marker_layout.rb │ │ │ │ │ │ ├── pivot_formats.rb │ │ │ │ │ │ ├── pivot_formats │ │ │ │ │ │ │ └── pivot_format.rb │ │ │ │ │ │ ├── plot_area.rb │ │ │ │ │ │ ├── plot_area │ │ │ │ │ │ │ └── common_chart_data.rb │ │ │ │ │ │ ├── series.rb │ │ │ │ │ │ ├── series │ │ │ │ │ │ │ ├── series_text.rb │ │ │ │ │ │ │ ├── series_text │ │ │ │ │ │ │ │ ├── number_string_reference.rb │ │ │ │ │ │ │ │ └── string_reference │ │ │ │ │ │ │ │ │ ├── number_string_cache.rb │ │ │ │ │ │ │ │ │ └── string_cache │ │ │ │ │ │ │ │ │ ├── point.rb │ │ │ │ │ │ │ │ │ └── point │ │ │ │ │ │ │ │ │ └── text_value.rb │ │ │ │ │ │ │ └── x_y_values.rb │ │ │ │ │ │ └── view_3d.rb │ │ │ │ │ ├── chart_axis.rb │ │ │ │ │ ├── chart_axis │ │ │ │ │ │ └── scaling.rb │ │ │ │ │ ├── chart_axis_title.rb │ │ │ │ │ ├── chart_cells_range.rb │ │ │ │ │ ├── chart_legend.rb │ │ │ │ │ ├── chart_point.rb │ │ │ │ │ └── display_labels_properties.rb │ │ │ │ ├── drawing │ │ │ │ │ ├── docx_drawing.rb │ │ │ │ │ ├── docx_drawing │ │ │ │ │ │ └── doc_properties.rb │ │ │ │ │ ├── drawing_properties │ │ │ │ │ │ ├── docx_drawing_distance_from_text.rb │ │ │ │ │ │ ├── docx_drawing_position.rb │ │ │ │ │ │ ├── docx_drawing_properties.rb │ │ │ │ │ │ ├── docx_wrap_drawing.rb │ │ │ │ │ │ ├── ooxml_coordinates.rb │ │ │ │ │ │ ├── ooxml_size.rb │ │ │ │ │ │ ├── size_relative │ │ │ │ │ │ │ └── picture_dimension.rb │ │ │ │ │ │ ├── size_relative_horizontal.rb │ │ │ │ │ │ └── size_relative_vertical.rb │ │ │ │ │ └── graphic │ │ │ │ │ │ ├── docx_graphic.rb │ │ │ │ │ │ ├── picture │ │ │ │ │ │ ├── docx_blip.rb │ │ │ │ │ │ ├── docx_blip │ │ │ │ │ │ │ └── file_reference.rb │ │ │ │ │ │ └── docx_picture.rb │ │ │ │ │ │ └── shape │ │ │ │ │ │ ├── docx_shape.rb │ │ │ │ │ │ ├── docx_shape │ │ │ │ │ │ ├── non_visual_shape_properties.rb │ │ │ │ │ │ ├── non_visual_shape_properties │ │ │ │ │ │ │ ├── common_non_visual_properties.rb │ │ │ │ │ │ │ ├── non_visual_properties.rb │ │ │ │ │ │ │ └── non_visual_properties │ │ │ │ │ │ │ │ └── shape_placeholder.rb │ │ │ │ │ │ ├── ooxml_text_box.rb │ │ │ │ │ │ ├── shape_style.rb │ │ │ │ │ │ ├── shape_style │ │ │ │ │ │ │ ├── font_reference.rb │ │ │ │ │ │ │ └── style_matrix_reference.rb │ │ │ │ │ │ └── text_body.rb │ │ │ │ │ │ ├── shape_body_properties │ │ │ │ │ │ ├── ooxml_shape_body_properties.rb │ │ │ │ │ │ └── ooxml_shape_body_properties │ │ │ │ │ │ │ └── preset_text_warp.rb │ │ │ │ │ │ └── shape_properties │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── docx_color_scheme.rb │ │ │ │ │ │ └── docx_pattern_fill.rb │ │ │ │ │ │ ├── custom_geometry │ │ │ │ │ │ ├── docx_custom_geometry │ │ │ │ │ │ │ ├── docx_shape_line_path.rb │ │ │ │ │ │ │ └── docx_shape_line_path │ │ │ │ │ │ │ │ └── docx_shape_line_element.rb │ │ │ │ │ │ └── ooxml_custom_geometry.rb │ │ │ │ │ │ ├── docx_color.rb │ │ │ │ │ │ ├── docx_shape_line.rb │ │ │ │ │ │ ├── docx_shape_properties.rb │ │ │ │ │ │ ├── docx_shape_properties │ │ │ │ │ │ ├── blip_fill.rb │ │ │ │ │ │ ├── blip_fill │ │ │ │ │ │ │ ├── blip.rb │ │ │ │ │ │ │ └── blip │ │ │ │ │ │ │ │ └── alpha_mod_fix.rb │ │ │ │ │ │ ├── preset_geometry.rb │ │ │ │ │ │ ├── preset_geometry │ │ │ │ │ │ │ ├── shape_adjust_value_list.rb │ │ │ │ │ │ │ └── shape_adjust_value_list │ │ │ │ │ │ │ │ └── shape_guide.rb │ │ │ │ │ │ └── text_box.rb │ │ │ │ │ │ ├── docx_shape_size.rb │ │ │ │ │ │ └── line │ │ │ │ │ │ └── line_end.rb │ │ │ │ └── picture │ │ │ │ │ ├── group │ │ │ │ │ ├── old_docx_group.rb │ │ │ │ │ ├── old_docx_group_element.rb │ │ │ │ │ └── old_docx_group_properties.rb │ │ │ │ │ ├── old_docx_picture.rb │ │ │ │ │ └── shape │ │ │ │ │ ├── old_docx_shape.rb │ │ │ │ │ ├── old_docx_shape_fill.rb │ │ │ │ │ └── old_docx_shape_properties.rb │ │ │ ├── borders_properties.rb │ │ │ ├── color.rb │ │ │ ├── color │ │ │ │ ├── color_helper.rb │ │ │ │ ├── color_indexes.list │ │ │ │ └── ooxml_color.rb │ │ │ ├── colors │ │ │ │ ├── color_alpha_channel.rb │ │ │ │ ├── color_properties.rb │ │ │ │ ├── hsl_color.rb │ │ │ │ ├── image_fill.rb │ │ │ │ ├── presentation_fill.rb │ │ │ │ ├── presentation_fill │ │ │ │ │ ├── gradient_color.rb │ │ │ │ │ ├── gradient_color │ │ │ │ │ │ ├── gradient_stop.rb │ │ │ │ │ │ └── linear_gradient.rb │ │ │ │ │ └── presentation_pattern.rb │ │ │ │ ├── scheme_color.rb │ │ │ │ ├── theme_colors.rb │ │ │ │ └── tile.rb │ │ │ ├── content_types.rb │ │ │ ├── content_types │ │ │ │ ├── content_type_default.rb │ │ │ │ └── content_type_override.rb │ │ │ ├── coordinates.rb │ │ │ ├── font_style.rb │ │ │ ├── hyperlink.rb │ │ │ ├── ooxml_document_object.rb │ │ │ ├── ooxml_document_object │ │ │ │ ├── nokogiri_parsing_exception.rb │ │ │ │ ├── ooxml_document_object_helper.rb │ │ │ │ └── ooxml_object_attribute_helper.rb │ │ │ ├── paragraph.rb │ │ │ ├── paragraph │ │ │ │ ├── paragraph_properties.rb │ │ │ │ ├── paragraph_properties │ │ │ │ │ ├── bullet_image.rb │ │ │ │ │ ├── numbering_properties.rb │ │ │ │ │ ├── paragraph_borders.rb │ │ │ │ │ ├── paragraph_spacing.rb │ │ │ │ │ ├── paragraph_style_ref.rb │ │ │ │ │ ├── spacing.rb │ │ │ │ │ ├── spacing │ │ │ │ │ │ └── spacing_valued_child.rb │ │ │ │ │ ├── tabs.rb │ │ │ │ │ └── tabs │ │ │ │ │ │ └── tab.rb │ │ │ │ ├── paragraph_run.rb │ │ │ │ ├── paragraph_run │ │ │ │ │ ├── run_properties.rb │ │ │ │ │ ├── run_properties │ │ │ │ │ │ ├── outline.rb │ │ │ │ │ │ ├── position.rb │ │ │ │ │ │ ├── run_fonts.rb │ │ │ │ │ │ ├── run_spacing.rb │ │ │ │ │ │ ├── run_style.rb │ │ │ │ │ │ ├── shade.rb │ │ │ │ │ │ └── size.rb │ │ │ │ │ └── text.rb │ │ │ │ └── text_field.rb │ │ │ ├── relationships.rb │ │ │ ├── relationships │ │ │ │ └── relationship.rb │ │ │ ├── table.rb │ │ │ ├── table │ │ │ │ ├── margins │ │ │ │ │ ├── paragraph_margins.rb │ │ │ │ │ └── table_margins.rb │ │ │ │ ├── properties │ │ │ │ │ ├── table_element.rb │ │ │ │ │ ├── table_layout.rb │ │ │ │ │ ├── table_look.rb │ │ │ │ │ ├── table_position.rb │ │ │ │ │ ├── table_style.rb │ │ │ │ │ ├── table_style_column_band_size.rb │ │ │ │ │ ├── table_style_properties.rb │ │ │ │ │ ├── table_style_properties │ │ │ │ │ │ └── table_style_properties_helper.rb │ │ │ │ │ └── table_style_row_band_size.rb │ │ │ │ ├── row │ │ │ │ │ ├── cell │ │ │ │ │ │ ├── cell.rb │ │ │ │ │ │ ├── cell_properties.rb │ │ │ │ │ │ ├── grid_span.rb │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ ├── border.rb │ │ │ │ │ │ │ ├── borders.rb │ │ │ │ │ │ │ ├── table_cell_line.rb │ │ │ │ │ │ │ └── table_cell_line │ │ │ │ │ │ │ └── line_join.rb │ │ │ │ │ ├── row.rb │ │ │ │ │ └── row │ │ │ │ │ │ ├── table_row_properties.rb │ │ │ │ │ │ └── table_row_properties │ │ │ │ │ │ └── table_row_height.rb │ │ │ │ ├── table_grid.rb │ │ │ │ ├── table_grid │ │ │ │ │ └── grid_column.rb │ │ │ │ ├── table_properties.rb │ │ │ │ └── table_properties │ │ │ │ │ └── table_borders.rb │ │ │ ├── underline.rb │ │ │ └── valued_child.rb │ │ ├── common_document_structure.rb │ │ ├── parser.rb │ │ └── parser │ │ │ ├── encryption_checker.rb │ │ │ └── ooxml_file.rb │ ├── configuration.rb │ ├── docx_parser.rb │ ├── docx_parser │ │ ├── document_structure.rb │ │ └── document_structure │ │ │ ├── comments.rb │ │ │ ├── comments │ │ │ └── comment.rb │ │ │ ├── comments_extended.rb │ │ │ ├── comments_extended │ │ │ └── comment_extended.rb │ │ │ ├── default_style_helper.rb │ │ │ ├── document_background.rb │ │ │ ├── document_properties.rb │ │ │ ├── document_settings.rb │ │ │ ├── document_structure_helpers.rb │ │ │ ├── document_style.rb │ │ │ ├── document_style │ │ │ └── document_style_helper.rb │ │ │ ├── docx_paragraph.rb │ │ │ ├── docx_paragraph │ │ │ ├── bookmark_end.rb │ │ │ ├── bookmark_start.rb │ │ │ ├── comment_range_end.rb │ │ │ ├── comment_range_start.rb │ │ │ ├── docx_formula.rb │ │ │ ├── docx_formula │ │ │ │ ├── accent.rb │ │ │ │ ├── argument_properties.rb │ │ │ │ ├── argument_properties │ │ │ │ │ └── argument_size.rb │ │ │ │ ├── bar.rb │ │ │ │ ├── box.rb │ │ │ │ ├── delimeter.rb │ │ │ │ ├── fraction.rb │ │ │ │ ├── function.rb │ │ │ │ ├── group_char.rb │ │ │ │ ├── index.rb │ │ │ │ ├── limit.rb │ │ │ │ ├── math_run.rb │ │ │ │ ├── math_run │ │ │ │ │ └── math_run_properties.rb │ │ │ │ ├── matrix.rb │ │ │ │ ├── matrix │ │ │ │ │ └── matrix_row.rb │ │ │ │ ├── nary.rb │ │ │ │ ├── nary │ │ │ │ │ ├── nary_properties.rb │ │ │ │ │ └── nary_properties │ │ │ │ │ │ ├── nary_grow.rb │ │ │ │ │ │ └── nary_limit_location.rb │ │ │ │ ├── pre_sub_superscript.rb │ │ │ │ └── radical.rb │ │ │ ├── docx_paragraph_helper.rb │ │ │ ├── docx_paragraph_run.rb │ │ │ ├── docx_paragraph_run │ │ │ │ ├── docx_paragraph_run_helpers.rb │ │ │ │ ├── field_char.rb │ │ │ │ ├── instruction_text.rb │ │ │ │ ├── object.rb │ │ │ │ ├── object │ │ │ │ │ └── ole_object.rb │ │ │ │ ├── shape.rb │ │ │ │ ├── shape │ │ │ │ │ ├── shape_properties.rb │ │ │ │ │ └── shape_properties │ │ │ │ │ │ ├── shape_margins.rb │ │ │ │ │ │ ├── shape_size.rb │ │ │ │ │ │ └── stroke.rb │ │ │ │ ├── text_fill.rb │ │ │ │ └── text_outline.rb │ │ │ ├── field_simple.rb │ │ │ ├── frame_properties.rb │ │ │ ├── indents.rb │ │ │ ├── inserted.rb │ │ │ ├── sdt │ │ │ │ ├── sdt_content.rb │ │ │ │ ├── sdt_properties.rb │ │ │ │ └── sdt_properties │ │ │ │ │ ├── checkbox.rb │ │ │ │ │ ├── checkbox │ │ │ │ │ └── checkbox_state.rb │ │ │ │ │ ├── combobox.rb │ │ │ │ │ ├── combobox │ │ │ │ │ └── list_item.rb │ │ │ │ │ ├── dropdown_list.rb │ │ │ │ │ ├── form_properties.rb │ │ │ │ │ ├── form_text_properties.rb │ │ │ │ │ └── form_text_properties │ │ │ │ │ ├── form_text_comb.rb │ │ │ │ │ └── form_text_format.rb │ │ │ └── structured_document_tag.rb │ │ │ ├── header_footer.rb │ │ │ ├── numbering.rb │ │ │ ├── numbering │ │ │ ├── abstract_numbering.rb │ │ │ ├── abstract_numbering │ │ │ │ ├── multilevel_type.rb │ │ │ │ ├── numbering_level.rb │ │ │ │ └── numbering_level │ │ │ │ │ ├── level_justification.rb │ │ │ │ │ ├── level_text.rb │ │ │ │ │ ├── numbering_format.rb │ │ │ │ │ └── suffix.rb │ │ │ └── numbering_definition.rb │ │ │ ├── page_properties │ │ │ ├── columns.rb │ │ │ ├── columns │ │ │ │ └── column.rb │ │ │ ├── document_grid.rb │ │ │ ├── footnote_properties.rb │ │ │ ├── note.rb │ │ │ ├── page_margins.rb │ │ │ ├── page_properties.rb │ │ │ ├── page_properties │ │ │ │ ├── header_footer_reference.rb │ │ │ │ └── page_borders.rb │ │ │ └── page_size.rb │ │ │ ├── styles.rb │ │ │ └── styles │ │ │ ├── document_defaults.rb │ │ │ └── document_defaults │ │ │ ├── paragraph_properties_default.rb │ │ │ └── run_properties_default.rb │ ├── helpers │ │ └── string_helper.rb │ ├── name.rb │ ├── pptx_parser.rb │ ├── pptx_parser │ │ ├── presentation.rb │ │ └── presentation │ │ │ ├── comment_authors.rb │ │ │ ├── comment_authors │ │ │ └── comment_author.rb │ │ │ ├── presentation_comments.rb │ │ │ ├── presentation_comments │ │ │ └── presentation_comment.rb │ │ │ ├── presentation_helpers.rb │ │ │ ├── presentation_theme.rb │ │ │ ├── presentation_theme │ │ │ ├── font_scheme.rb │ │ │ ├── font_scheme │ │ │ │ ├── font_collection.rb │ │ │ │ └── font_collection │ │ │ │ │ └── text_font.rb │ │ │ └── theme_color.rb │ │ │ ├── slide.rb │ │ │ ├── slide │ │ │ ├── background.rb │ │ │ ├── background │ │ │ │ ├── background_properties.rb │ │ │ │ └── background_properties │ │ │ │ │ └── stretch.rb │ │ │ ├── common_slide_data.rb │ │ │ ├── common_slide_data │ │ │ │ └── shape_tree.rb │ │ │ ├── connection_shape.rb │ │ │ ├── graphic_frame │ │ │ │ ├── graphic_frame.rb │ │ │ │ └── graphic_frame │ │ │ │ │ └── chart_reference.rb │ │ │ ├── presentation_alternate_content.rb │ │ │ ├── presentation_notes.rb │ │ │ ├── slide │ │ │ │ ├── shapes_grouping.rb │ │ │ │ ├── timing.rb │ │ │ │ └── timing │ │ │ │ │ ├── time_node_list.rb │ │ │ │ │ └── time_node_list │ │ │ │ │ ├── animation_effect │ │ │ │ │ └── animation_effect.rb │ │ │ │ │ ├── set_time_node │ │ │ │ │ ├── behavior │ │ │ │ │ │ ├── behavior.rb │ │ │ │ │ │ └── target_element.rb │ │ │ │ │ └── set_time_node.rb │ │ │ │ │ ├── time_node.rb │ │ │ │ │ └── time_node │ │ │ │ │ ├── common_timing.rb │ │ │ │ │ └── common_timing │ │ │ │ │ ├── codition_list │ │ │ │ │ └── condition.rb │ │ │ │ │ └── condition_list.rb │ │ │ ├── slide_helper.rb │ │ │ └── transition │ │ │ │ ├── transition.rb │ │ │ │ ├── transition │ │ │ │ ├── sound_action.rb │ │ │ │ └── sound_action │ │ │ │ │ └── sound.rb │ │ │ │ └── transition_properties │ │ │ │ ├── transition_properties.rb │ │ │ │ └── transition_properties │ │ │ │ └── wheel.rb │ │ │ ├── slide_layout_file.rb │ │ │ ├── slide_layouts_helper.rb │ │ │ ├── slide_master_file.rb │ │ │ ├── slide_masters_helper.rb │ │ │ ├── slide_size.rb │ │ │ └── table_styles.rb │ ├── version.rb │ ├── xlsx_parser.rb │ └── xlsx_parser │ │ ├── workbook.rb │ │ └── workbook │ │ ├── chartsheet.rb │ │ ├── defined_name.rb │ │ ├── pivot_cache.rb │ │ ├── pivot_cache │ │ ├── pivot_cache_definition.rb │ │ └── pivot_cache_definition │ │ │ ├── cache_fields.rb │ │ │ ├── cache_fields │ │ │ ├── cache_field.rb │ │ │ └── cache_field │ │ │ │ └── shared_items.rb │ │ │ ├── cache_source.rb │ │ │ └── cache_source │ │ │ └── worksheet_source.rb │ │ ├── pivot_table_definition.rb │ │ ├── pivot_table_definition │ │ ├── column_row_items.rb │ │ ├── column_row_items │ │ │ └── column_row_item.rb │ │ ├── data_fields.rb │ │ ├── data_fields │ │ │ └── data_field.rb │ │ ├── location.rb │ │ ├── page_fields.rb │ │ ├── page_fields │ │ │ └── page_field.rb │ │ ├── pivot_fields.rb │ │ ├── pivot_fields │ │ │ ├── pivot_field.rb │ │ │ └── pivot_field │ │ │ │ ├── items.rb │ │ │ │ └── items │ │ │ │ └── item.rb │ │ ├── pivot_table_style_info.rb │ │ ├── row_fields.rb │ │ └── row_fields │ │ │ └── field.rb │ │ ├── shared_string_table.rb │ │ ├── shared_string_table │ │ └── string_index.rb │ │ ├── sheet.rb │ │ ├── style_sheet.rb │ │ ├── style_sheet │ │ ├── cell_xfs.rb │ │ ├── cell_xfs │ │ │ ├── cell_style │ │ │ │ ├── alignment.rb │ │ │ │ └── protection.rb │ │ │ └── xf.rb │ │ ├── differential_formatting_records.rb │ │ ├── fills.rb │ │ ├── fills │ │ │ ├── fill.rb │ │ │ └── fill │ │ │ │ └── pattern_fill.rb │ │ ├── fonts.rb │ │ ├── fonts │ │ │ └── font.rb │ │ ├── number_formats.rb │ │ ├── number_formats │ │ │ └── number_format.rb │ │ ├── xlsx_borders.rb │ │ └── xlsx_borders │ │ │ └── xlsx_border.rb │ │ ├── workbook_helpers.rb │ │ ├── workbook_properties.rb │ │ ├── workbook_protection.rb │ │ ├── worksheet.rb │ │ └── worksheet │ │ ├── excel_comments.rb │ │ ├── excel_comments │ │ ├── author.rb │ │ ├── comment_list.rb │ │ └── excel_comment.rb │ │ ├── ole_objects.rb │ │ ├── page_setup.rb │ │ ├── protected_range.rb │ │ ├── sheet_format_properties.rb │ │ ├── sheet_protection.rb │ │ ├── sheet_view.rb │ │ ├── sheet_view │ │ ├── pane.rb │ │ └── selection.rb │ │ ├── table_part.rb │ │ ├── table_part │ │ ├── autofilter.rb │ │ ├── autofilter │ │ │ ├── filter_column.rb │ │ │ └── filter_column │ │ │ │ ├── custom_filters.rb │ │ │ │ └── custom_filters │ │ │ │ └── custom_filter.rb │ │ ├── extension_list.rb │ │ ├── extension_list │ │ │ ├── extension.rb │ │ │ └── extension │ │ │ │ ├── conditional_formattings.rb │ │ │ │ ├── conditional_formattings │ │ │ │ ├── conditional_formatting.rb │ │ │ │ └── conditional_formatting │ │ │ │ │ ├── conditional_formatting_rule.rb │ │ │ │ │ └── conditional_formatting_rule │ │ │ │ │ ├── color_scale.rb │ │ │ │ │ ├── data_bar.rb │ │ │ │ │ ├── data_bar │ │ │ │ │ └── conditional_format_value_object.rb │ │ │ │ │ ├── differential_formatting_record.rb │ │ │ │ │ ├── icon_set.rb │ │ │ │ │ └── icon_set │ │ │ │ │ └── conditional_formatting_icon.rb │ │ │ │ ├── data_validations.rb │ │ │ │ ├── data_validations │ │ │ │ ├── data_validation.rb │ │ │ │ └── data_validation │ │ │ │ │ └── data_validation_formula.rb │ │ │ │ ├── sparkline_groups.rb │ │ │ │ ├── sparkline_groups │ │ │ │ ├── sparkline_group.rb │ │ │ │ └── sparkline_group │ │ │ │ │ ├── sparklines.rb │ │ │ │ │ └── sparklines │ │ │ │ │ └── sparkline.rb │ │ │ │ ├── user_protected_ranges.rb │ │ │ │ ├── x14_data_field.rb │ │ │ │ └── x14_table.rb │ │ ├── table_columns.rb │ │ ├── table_columns │ │ │ └── table_column.rb │ │ └── table_style_info.rb │ │ ├── worksheet_helper.rb │ │ ├── xlsx_columns.rb │ │ ├── xlsx_columns │ │ └── xlsx_column_properties.rb │ │ ├── xlsx_drawing.rb │ │ ├── xlsx_drawing │ │ ├── client_data.rb │ │ └── xlsx_drawing_position_parameters.rb │ │ ├── xlsx_header_footer.rb │ │ ├── xlsx_header_footer │ │ └── header_footer_child.rb │ │ ├── xlsx_row.rb │ │ └── xlsx_row │ │ ├── xlsx_cell.rb │ │ └── xlsx_cell │ │ └── formula.rb └── truffleruby_patch.rb ├── ooxml_parser.gemspec └── spec ├── common ├── file_name │ └── full_file_name.docx ├── file_name_spec.rb ├── file_path │ ├── file_path.docx │ ├── file_path.pptx │ └── file_path.xlsx ├── file_path_in_scructure_spec.rb ├── file_type_recognize │ ├── simple_docx.docx │ ├── simple_pptx.pptx │ ├── simple_xlsx.xlsx │ └── simple_zip.zip ├── file_type_recognizer_spec.rb ├── ooxml_document_object │ ├── to_hash │ │ └── text_in_paragraph.docx │ └── to_hash_spec.rb └── password_protected │ ├── files │ ├── password protected space in name.docx │ ├── password_protected.docx │ ├── password_protected.pptx │ └── password_protected.xlsx │ ├── password_protected_correct_password_spec.rb │ ├── password_protected_incorrect_password_spec.rb │ └── password_protected_no_password_spec.rb ├── document ├── background │ ├── document_background.docx │ ├── document_background_fill.docx │ └── document_background_fill_no_type.docx ├── comments │ ├── comment_object.docx │ └── comments_paragraphs_with_ids.docx ├── comments_document │ └── comments_document.docx ├── comments_document_spec.rb ├── comments_extended │ ├── comment_with_parent_id.docx │ └── comments_extended.docx ├── comments_extended_spec.rb ├── comments_spec.rb ├── compare │ ├── compare_two_paragraphs.docx │ ├── different_set │ │ ├── first.docx │ │ └── second.docx │ ├── set_1 │ │ ├── first.docx │ │ └── second.docx │ ├── set_2 │ │ ├── first.docx │ │ └── second.docx │ ├── set_3 │ │ ├── first.docx │ │ └── second.docx │ └── two_same_docs │ │ ├── first.docx │ │ └── second.docx ├── compare_spec.rb ├── document_background_spec.rb ├── document_content_type_spec.rb ├── document_properties │ ├── no_app_xml_file.docx │ ├── no_word_statistic.docx │ ├── page_count.docx │ └── word_count.docx ├── document_properties_spec.rb ├── document_structure │ ├── numbering.docx │ ├── shape_header_footer.docx │ ├── table_header_footer.docx │ └── text_header_footer.docx ├── document_structure_spec.rb ├── document_style │ ├── defaults │ │ ├── paragraph_properties │ │ │ └── default_justification.docx │ │ ├── paragraph_properties_default_spec.rb │ │ ├── run_properties │ │ │ ├── default_document_language.docx │ │ │ ├── no_default_run_properties.docx │ │ │ └── no_run_properties_document_defaults.docx │ │ └── run_properties_default_spec.rb │ ├── document_style_based_on_style.docx │ ├── document_style_default.docx │ ├── file_to_compare_to_himself.docx │ ├── new_paragraph_style.docx │ ├── no_styles_xml.docx │ ├── paragraph_style_id_word.docx │ ├── stlye_table_cell_properties_spec.rb │ ├── style_exists.docx │ ├── style_visibility.docx │ ├── table_cell_properties │ │ ├── color │ │ │ └── cell_properties_color_nil.docx │ │ ├── table_cell_properties_border.docx │ │ ├── table_cell_properties_color_spec.rb │ │ └── table_cell_properties_vert_align_spec.rb │ ├── table_document_style.docx │ ├── table_style │ │ ├── paragraph_properties │ │ │ └── paragraph_properties_jc.docx │ │ ├── paragraph_properties_spec.rb │ │ ├── table_style_height.docx │ │ ├── table_style_properties_table_properties.docx │ │ └── table_style_properties_table_row_properties.docx │ ├── table_style_properties_document_style.docx │ ├── table_style_properties_type.docx │ └── table_style_spec.rb ├── document_style_spec.rb ├── editor_specific_documents │ ├── libreoffice │ │ └── simple_text.docx │ └── ms_office_2013 │ │ └── simple_text.docx ├── editor_specific_documents_spec.rb ├── elements │ ├── formula │ │ ├── argument_properties │ │ │ └── argument_properties_size.docx │ │ ├── bar_spec.rb │ │ ├── formula_accent_spec.rb │ │ ├── group_char_spec.rb │ │ ├── run │ │ │ └── run_properties │ │ │ │ ├── formula_manual_break.docx │ │ │ │ └── formula_with_bottom_index.docx │ │ └── types │ │ │ ├── formula_accent.docx │ │ │ ├── formula_bar_1.docx │ │ │ ├── formula_bar_2.docx │ │ │ ├── formula_brackets.docx │ │ │ ├── formula_complex.docx │ │ │ ├── formula_function.docx │ │ │ ├── formula_group_char.docx │ │ │ ├── formula_integral.docx │ │ │ ├── formula_limit.docx │ │ │ ├── formula_symbol.docx │ │ │ ├── fraction.docx │ │ │ ├── matrix.docx │ │ │ └── nary_formula_type.docx │ ├── formula_spec.rb │ ├── paragraph │ │ ├── align │ │ │ └── all_four_alignes.docx │ │ ├── background │ │ │ └── background_color_style_nil.docx │ │ ├── bookmark │ │ │ └── bookmark_basic.docx │ │ ├── bookmark_spec.rb │ │ ├── borders │ │ │ ├── border_properties_nil.docx │ │ │ ├── border_size_nil.docx │ │ │ ├── border_size_pt_8.docx │ │ │ ├── borders_space_nil.docx │ │ │ └── dropcap_borders.docx │ │ ├── comment_range_spec.rb │ │ ├── comments_range │ │ │ └── comments_range.docx │ │ ├── indents │ │ │ ├── indents_comparasion.docx │ │ │ ├── indents_round.docx │ │ │ └── no_indents_default_style.docx │ │ ├── inserted │ │ │ ├── inserted_run.docx │ │ │ └── inserted_run_inccorrect_date.docx │ │ ├── inserted_run_spec.rb │ │ ├── instruction_type.docx │ │ ├── keep_lines_together.docx │ │ ├── keep_next.docx │ │ ├── nonempty_runs │ │ │ ├── endnote_nonempty_runs.docx │ │ │ ├── footnote_nonempty_runs.docx │ │ │ ├── nonempty_runs_with_shape.docx │ │ │ └── sdt_as_paragraph_element.docx │ │ ├── nonempty_runs_spec.rb │ │ ├── numbering │ │ │ ├── nonempty_numbering.docx │ │ │ ├── numbering.docx │ │ │ ├── numbering_font_name.docx │ │ │ ├── numbering_in_header.docx │ │ │ ├── numbering_in_shape.docx │ │ │ ├── numbering_in_table.docx │ │ │ ├── numbering_multilevel_type.docx │ │ │ ├── numbering_paragraph_indent.docx │ │ │ └── numbering_suffix.docx │ │ ├── numbering_spec.rb │ │ ├── page_break_before.docx │ │ ├── page_numbering.docx │ │ ├── paragarph_indents_spec.rb │ │ ├── paragraph_align_spec.rb │ │ ├── paragraph_background_spec.rb │ │ ├── paragraph_borders_spec.rb │ │ ├── paragraph_equals.docx │ │ ├── paragraph_style_several_paragraphs.docx │ │ ├── properties │ │ │ ├── borders │ │ │ │ └── border_color_nil.docx │ │ │ ├── contextual_spacing │ │ │ │ ├── contextual_spacing_true.docx │ │ │ │ └── different_contextual_spacing.docx │ │ │ ├── contextual_spacing_spec.rb │ │ │ ├── frame_properties │ │ │ │ └── anchor_lock.docx │ │ │ ├── frame_properties_spec.rb │ │ │ ├── indents │ │ │ │ ├── indents_custom.pptx │ │ │ │ └── indents_default.docx │ │ │ ├── indents_spec.rb │ │ │ ├── keep_next │ │ │ │ └── keep_next.docx │ │ │ ├── keep_next_spec.rb │ │ │ ├── margins │ │ │ │ ├── paragraph_properties_margin_left.pptx │ │ │ │ └── paragraph_properties_margin_right.pptx │ │ │ ├── paragraph_border_properties_spec.rb │ │ │ ├── paragraph_properties_margins_spec.rb │ │ │ ├── paragraph_properties_shade_spec.rb │ │ │ ├── paragraph_spacing_spec.rb │ │ │ ├── paragraph_style_ref │ │ │ │ └── paragraph_style_ref.docx │ │ │ ├── paragraph_style_ref_spec.rb │ │ │ ├── run_properties │ │ │ │ └── custom_run_properties.docx │ │ │ ├── run_properties_spec.rb │ │ │ ├── section_properties │ │ │ │ ├── header_reference │ │ │ │ │ └── header_reference_in_section.docx │ │ │ │ └── header_reference_in_section_spec.rb │ │ │ ├── shade │ │ │ │ └── simple_shade.docx │ │ │ ├── spacing │ │ │ │ ├── paragraph_spacing_line_value.docx │ │ │ │ └── paragraph_spacing_value_size.docx │ │ │ ├── tabs │ │ │ │ ├── tab_leader.docx │ │ │ │ ├── tab_leader_middle_dot.docx │ │ │ │ └── tabs_position.docx │ │ │ └── tabs_spec.rb │ │ ├── run_spec.rb │ │ ├── runs │ │ │ ├── alternate_content │ │ │ │ ├── office2007_content │ │ │ │ │ ├── data │ │ │ │ │ │ ├── office2007_data_properties_spec.rb │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ └── old_docx_group_wrap_nil.docx │ │ │ │ │ │ ├── text_box │ │ │ │ │ │ │ └── table_in_text_box.docx │ │ │ │ │ │ └── text_box_spec.rb │ │ │ │ │ ├── old_docx_shape │ │ │ │ │ │ ├── no_picture_target.docx │ │ │ │ │ │ ├── old_docx_shape.docx │ │ │ │ │ │ ├── pict_in_character_run.docx │ │ │ │ │ │ ├── picture_target_no_blip_internals.docx │ │ │ │ │ │ └── picture_target_null.docx │ │ │ │ │ └── olds_docx_shape_spec.rb │ │ │ │ └── office2010_content │ │ │ │ │ ├── graphic │ │ │ │ │ ├── chart_series_spec.rb │ │ │ │ │ ├── data │ │ │ │ │ │ ├── blip_fill │ │ │ │ │ │ │ └── blip │ │ │ │ │ │ │ │ ├── alpha_mod_fix │ │ │ │ │ │ │ │ └── alpha_mod_fix_value.docx │ │ │ │ │ │ │ │ └── alpha_mod_fix_spec.rb │ │ │ │ │ │ ├── body_properties │ │ │ │ │ │ │ ├── attributes │ │ │ │ │ │ │ │ └── body_properties_text_rotation.docx │ │ │ │ │ │ │ ├── body_properties_attributes_spec.rb │ │ │ │ │ │ │ ├── body_properties_margins_spec.rb │ │ │ │ │ │ │ └── margins │ │ │ │ │ │ │ │ └── body_properties_margins_values.docx │ │ │ │ │ │ ├── docx_shape_graphic_style_spec.rb │ │ │ │ │ │ └── style │ │ │ │ │ │ │ ├── no_style.docx │ │ │ │ │ │ │ └── style.docx │ │ │ │ │ ├── grouping │ │ │ │ │ │ ├── chart │ │ │ │ │ │ │ └── chart_grouping.docx │ │ │ │ │ │ └── chart_grouping_spec.rb │ │ │ │ │ └── series │ │ │ │ │ │ └── chart_series_no_values.docx │ │ │ │ │ └── properties │ │ │ │ │ ├── distance_from_text │ │ │ │ │ └── distance_from_text_in_emu.docx │ │ │ │ │ ├── distance_from_text_spec.rb │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── offset │ │ │ │ │ └── offset_in_other_unit.docx │ │ │ │ │ └── offset_spec.rb │ │ │ ├── background_color │ │ │ │ └── background_color.docx │ │ │ ├── caps_characters_on.docx │ │ │ ├── drawing │ │ │ │ ├── doc_properties │ │ │ │ │ └── doc_properties.docx │ │ │ │ ├── doc_properties_spec.rb │ │ │ │ ├── drawing_offset │ │ │ │ │ ├── chart_offset_non_zero.docx │ │ │ │ │ ├── chart_offset_w14.docx │ │ │ │ │ └── chart_offset_zero.docx │ │ │ │ ├── drawing_offset_spec.rb │ │ │ │ ├── graphic │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── axis │ │ │ │ │ │ │ └── root_element_of_chart_axis.docx │ │ │ │ │ │ ├── chart_axis_spec.rb │ │ │ │ │ │ └── chart_with_style.docx │ │ │ │ │ ├── chart_color_style.docx │ │ │ │ │ ├── chart_fill_pattern.docx │ │ │ │ │ ├── chart_grid_lines_for_x.docx │ │ │ │ │ ├── chart_in_header.docx │ │ │ │ │ ├── chart_in_table.docx │ │ │ │ │ ├── chart_minor_gridline.docx │ │ │ │ │ ├── chart_point_1.docx │ │ │ │ │ ├── chart_point_2.docx │ │ │ │ │ ├── chart_points.docx │ │ │ │ │ ├── chart_relationsheep_spec.rb │ │ │ │ │ ├── chart_style │ │ │ │ │ │ └── data_point_marker_layout_spec.rb │ │ │ │ │ ├── chart_style_spec.rb │ │ │ │ │ ├── chart_title.docx │ │ │ │ │ ├── chart_title_with_empty_paragraph.docx │ │ │ │ │ ├── gradient_stop │ │ │ │ │ │ └── gradient_stop_color_properties_spec.rb │ │ │ │ │ ├── graphic_data_type_spec.rb │ │ │ │ │ ├── picture │ │ │ │ │ │ ├── image_empty_link.docx │ │ │ │ │ │ └── image_with_inccorect_link.docx │ │ │ │ │ ├── picture_spec.rb │ │ │ │ │ ├── text_art │ │ │ │ │ │ ├── color_fills_nothing.docx │ │ │ │ │ │ ├── gradient_text.docx │ │ │ │ │ │ ├── opacity_50.docx │ │ │ │ │ │ ├── opactiy_0.docx │ │ │ │ │ │ ├── text_borders_width_1pt.docx │ │ │ │ │ │ ├── text_borders_width_2.25pt.docx │ │ │ │ │ │ ├── text_outline_color_scheme.docx │ │ │ │ │ │ ├── text_outline_color_standart.docx │ │ │ │ │ │ ├── text_with_out_fill_color.docx │ │ │ │ │ │ ├── tranform_arc.docx │ │ │ │ │ │ ├── transform_circle.docx │ │ │ │ │ │ ├── without_outline.docx │ │ │ │ │ │ ├── without_outline_color.docx │ │ │ │ │ │ └── without_outline_width.docx │ │ │ │ │ ├── text_art_spec.rb │ │ │ │ │ └── type │ │ │ │ │ │ ├── docx_with_chart.docx │ │ │ │ │ │ ├── docx_with_several_chart.docx │ │ │ │ │ │ ├── header_insert_chart.docx │ │ │ │ │ │ └── pie_drawing_type.docx │ │ │ │ ├── properties │ │ │ │ │ ├── colors │ │ │ │ │ │ ├── chart_fill_scheme_folor.docx │ │ │ │ │ │ ├── graphic_background_color_gradient.docx │ │ │ │ │ │ ├── shape_gradient_color.docx │ │ │ │ │ │ ├── shape_gradient_color_angle.docx │ │ │ │ │ │ ├── shape_insert_all_fill_picture.docx │ │ │ │ │ │ └── shape_pattern_fill.docx │ │ │ │ │ ├── drawing_properties_color_spec.rb │ │ │ │ │ ├── drawing_properties_line_spec.rb │ │ │ │ │ ├── drawing_properties_size_spec.rb │ │ │ │ │ ├── drawing_shape_size_spec.rb │ │ │ │ │ ├── line │ │ │ │ │ │ ├── adjust_values.docx │ │ │ │ │ │ ├── drawing_properties_line_dash │ │ │ │ │ │ │ └── drawing_properties_line_dash_type.docx │ │ │ │ │ │ ├── drawing_properties_line_dash_spec.rb │ │ │ │ │ │ ├── line_properties_default.docx │ │ │ │ │ │ ├── shape_line_custom_geometry.docx │ │ │ │ │ │ ├── shape_line_ending.docx │ │ │ │ │ │ ├── shape_line_object_size.docx │ │ │ │ │ │ └── shape_line_points.docx │ │ │ │ │ ├── shape_size │ │ │ │ │ │ ├── extent │ │ │ │ │ │ │ ├── extent_rotate.docx │ │ │ │ │ │ │ ├── extent_x_with_custom_accuracy.docx │ │ │ │ │ │ │ └── extent_x_with_default_accuracy.docx │ │ │ │ │ │ ├── extent_spec.rb │ │ │ │ │ │ └── shape_size_flip.docx │ │ │ │ │ └── size │ │ │ │ │ │ └── size_relative.docx │ │ │ │ ├── shape_grouping.docx │ │ │ │ └── two_drawings_in_same_paragraph.docx │ │ │ ├── drawing_spec.rb │ │ │ ├── font_color │ │ │ │ ├── color.docx │ │ │ │ ├── color_nil.docx │ │ │ │ ├── copied_paragrph_with_color_1.docx │ │ │ │ ├── copied_paragrph_with_color_2.docx │ │ │ │ ├── font_color_01.docx │ │ │ │ ├── font_color_02.docx │ │ │ │ ├── font_color_03.docx │ │ │ │ ├── font_color_04.docx │ │ │ │ └── shape_with_font_color.docx │ │ │ ├── font_color_spec.rb │ │ │ ├── font_style │ │ │ │ ├── double_strikethrought.docx │ │ │ │ ├── dropcap_font_style_strike_off.docx │ │ │ │ ├── dropcap_front_style_strike_on.docx │ │ │ │ ├── font_style_copied_paragraph.docx │ │ │ │ ├── paragraph_style_second_paragraph.docx │ │ │ │ ├── run_style_from_default.docx │ │ │ │ ├── underlined │ │ │ │ │ ├── underline_single_symbol.docx │ │ │ │ │ └── underlined_single.docx │ │ │ │ └── underlined_style_spec.rb │ │ │ ├── font_style_spec.rb │ │ │ ├── footnote_reference_spec.rb │ │ │ ├── footnote_references │ │ │ │ ├── footnote_reference_id.docx │ │ │ │ └── footnote_reference_paragraph.docx │ │ │ ├── formula_run │ │ │ │ ├── delimeter_begin_char_empty.docx │ │ │ │ └── pre_sub_superscrip_formula.docx │ │ │ ├── formula_type_spec.rb │ │ │ ├── link │ │ │ │ ├── field_inside_hyperlink.docx │ │ │ │ ├── hyperlink.docx │ │ │ │ ├── hyperlink_runs_text_not_merged.docx │ │ │ │ ├── hyperlink_tooltip.docx │ │ │ │ ├── hyperlink_with_run_into_it.docx │ │ │ │ ├── link_xpath_error.docx │ │ │ │ └── run_with_link.docx │ │ │ ├── object │ │ │ │ ├── ole_object │ │ │ │ │ ├── spreadsheet_ole_and_link.docx │ │ │ │ │ ├── spreadsheet_ole_object.docx │ │ │ │ │ ├── youtube_ole_object_file_reference_content.docx │ │ │ │ │ └── youtube_ole_object_id.docx │ │ │ │ ├── spreadsheet_ole_object_spec.rb │ │ │ │ └── yotube_ole_object_spec.rb │ │ │ ├── paragraph_run_background_color_spec.rb │ │ │ ├── paragraph_run_hyperlink_spec.rb │ │ │ ├── paragraph_run_instruction_text │ │ │ │ └── instruction_text_sample.docx │ │ │ ├── paragraph_run_instruction_text_spec.rb │ │ │ ├── paragraph_run_link_spec.rb │ │ │ ├── paragraph_run_text_spec.rb │ │ │ ├── pararga_run_hyperlink │ │ │ │ └── paragraph_run_hyperlink.docx │ │ │ ├── properties │ │ │ │ ├── language │ │ │ │ │ └── language_run_pr.docx │ │ │ │ ├── language_run_pr_spec.rb │ │ │ │ ├── ligatures │ │ │ │ │ └── ligatures.docx │ │ │ │ ├── ligatures_spec.rb │ │ │ │ ├── position │ │ │ │ │ └── position_negative.docx │ │ │ │ ├── position_spec.rb │ │ │ │ ├── run_style │ │ │ │ │ ├── run_properties_style_name.docx │ │ │ │ │ └── run_properties_style_referenced_styles.docx │ │ │ │ ├── run_style_spec.rb │ │ │ │ ├── shade │ │ │ │ │ └── shade_clear.docx │ │ │ │ ├── shade_spec.rb │ │ │ │ ├── spacing │ │ │ │ │ └── spacing_sizing.docx │ │ │ │ └── spacing_run_pr_spec.rb │ │ │ ├── run_font_properties.docx │ │ │ ├── runs_font_size_spec.rb │ │ │ ├── size │ │ │ │ ├── default_font_size.docx │ │ │ │ └── font_size_float.docx │ │ │ └── text │ │ │ │ ├── copy_table_from_cse.docx │ │ │ │ ├── nonbreaking_hyphen.docx │ │ │ │ ├── shape_with_text.docx │ │ │ │ ├── tab_inside_run.docx │ │ │ │ ├── table_merge.docx │ │ │ │ ├── text_box_list.docx │ │ │ │ ├── text_in_header_footer_section.docx │ │ │ │ ├── text_inside_field.docx │ │ │ │ └── text_line_break.docx │ │ ├── section_indent_hanging_nil.docx │ │ ├── section_properties │ │ │ ├── footnote_properties │ │ │ │ └── footnote_position.docx │ │ │ └── footnote_properties_spec.rb │ │ ├── spacing │ │ │ ├── contextual_spacing_false.docx │ │ │ ├── contextual_spacing_true.docx │ │ │ ├── default_spacing.docx │ │ │ ├── line_rule.docx │ │ │ ├── line_spacing_another_order.docx │ │ │ ├── shape_paragraph_spacing_1.docx │ │ │ ├── shape_paragraph_spacing_2.docx │ │ │ ├── shape_paragraph_spacing_3.docx │ │ │ ├── space_default_spacing.docx │ │ │ ├── spacing_is_2.docx │ │ │ └── table_line_spacing.docx │ │ ├── spacing_spec.rb │ │ ├── std │ │ │ ├── sdt_form_properties │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox.docxf │ │ │ │ │ ├── checkbox_spec.rb │ │ │ │ │ └── checkbox_state_spec.rb │ │ │ │ ├── combobox │ │ │ │ │ ├── combobox.docx │ │ │ │ │ └── combobox_spec.rb │ │ │ │ ├── dropdown_list │ │ │ │ │ ├── dropdown_list.docx │ │ │ │ │ └── dropdown_list_spec.rb │ │ │ │ ├── form.docxf │ │ │ │ ├── form_no_autofit.docxf │ │ │ │ ├── form_properties_attributes_spec.rb │ │ │ │ ├── form_properties_spec.rb │ │ │ │ ├── form_text_properties │ │ │ │ │ ├── form_text_comb_spec.rb │ │ │ │ │ └── form_text_format_spec.rb │ │ │ │ └── form_text_properties_spec.rb │ │ │ ├── std_content │ │ │ │ ├── doc_without_sdt.docx │ │ │ │ ├── sdt_content_text.docx │ │ │ │ ├── sdt_properties_alias.docx │ │ │ │ ├── sdt_properties_lock.docx │ │ │ │ └── sdt_properties_tag.docx │ │ │ └── std_content_spec.rb │ │ └── table_with_default_table_run_style.docx │ ├── paragraph_spec.rb │ ├── table │ │ ├── borders │ │ │ ├── table_borders.docx │ │ │ └── table_borders_visual.docx │ │ ├── cell │ │ │ ├── cell_properties_spec.rb │ │ │ ├── elements │ │ │ │ └── table_cell_sdt_element.docx │ │ │ ├── properties │ │ │ │ ├── borders_properties.docx │ │ │ │ ├── cell_properties_merge_restart.docx │ │ │ │ ├── cell_vertical_merge_spec.rb │ │ │ │ ├── grid_span │ │ │ │ │ ├── grid_span_value.docx │ │ │ │ │ └── remove_merge_alias.docx │ │ │ │ ├── grid_span_spec.rb │ │ │ │ ├── margin │ │ │ │ │ └── margin.pptx │ │ │ │ ├── margin_spec.rb │ │ │ │ ├── no_wrap │ │ │ │ │ └── no_wrap_enabled.docx │ │ │ │ ├── no_wrap_cell_propertie_spec.rb │ │ │ │ ├── shade_nil.docx │ │ │ │ ├── table_cell_margin │ │ │ │ │ └── table_cell_margins_size.docx │ │ │ │ ├── table_cell_margins_spec.rb │ │ │ │ ├── table_cell_shade.docx │ │ │ │ ├── table_cell_width │ │ │ │ │ └── table_cell_width_size.docx │ │ │ │ ├── table_cell_width_spec.rb │ │ │ │ ├── table_custom_cell_margin.docx │ │ │ │ ├── text_direction │ │ │ │ │ ├── table_cell_text_bottom_to_top_left_to_right.docx │ │ │ │ │ ├── table_cell_text_left_to_right_top_to_bottom.docx │ │ │ │ │ ├── table_cell_text_no_rotation.docx │ │ │ │ │ ├── table_cell_text_rotated_270.docx │ │ │ │ │ ├── table_cell_text_rotated_90.docx │ │ │ │ │ └── table_cell_text_top_to_bottom_right_to_left.docx │ │ │ │ ├── text_direction_spec.rb │ │ │ │ └── vertical_merge │ │ │ │ │ └── cell_vertical_merge_value.docx │ │ │ └── table_cell_elements_spec.rb │ │ ├── properties │ │ │ ├── borders │ │ │ │ ├── table_boders_inside_color.docx │ │ │ │ └── table_borders_space.docx │ │ │ ├── caption │ │ │ │ └── table_caption.docx │ │ │ ├── description │ │ │ │ └── table_description.docx │ │ │ ├── table_border_size.docx │ │ │ ├── table_caption_spec.rb │ │ │ ├── table_cell_margin.docx │ │ │ ├── table_cell_spacing │ │ │ │ └── table_cell_spacing.docx │ │ │ ├── table_cell_spacing_spec.rb │ │ │ ├── table_description_spec.rb │ │ │ ├── table_indent.docx │ │ │ ├── table_indent │ │ │ │ ├── set_table_indent.docx │ │ │ │ └── table_indent_in_cm.docx │ │ │ ├── table_indent_spec.rb │ │ │ ├── table_layout │ │ │ │ └── table_layout_autofit.docx │ │ │ ├── table_layout_spec.rb │ │ │ ├── table_look.docx │ │ │ ├── table_properties_border_spec.rb │ │ │ ├── table_properties_jc_center.docx │ │ │ ├── table_properties_jc_left.docx │ │ │ ├── table_properties_position_x.docx │ │ │ ├── table_properties_position_x_nil.docx │ │ │ ├── table_shade_color.docx │ │ │ ├── table_style │ │ │ │ ├── table_style_root_object_1.docx │ │ │ │ └── table_style_root_object_2.docx │ │ │ ├── table_style_column_band_size │ │ │ │ └── table_style_column_band_size_value.docx │ │ │ ├── table_style_column_band_size_spec.rb │ │ │ ├── table_style_row_band_size │ │ │ │ └── table_style_row_band_size_value.docx │ │ │ ├── table_style_row_band_size_spec.rb │ │ │ ├── table_style_spec.rb │ │ │ ├── table_width │ │ │ │ ├── custom_table_width.docx │ │ │ │ └── table_width_in_percent.docx │ │ │ └── table_width_spec.rb │ │ ├── row │ │ │ ├── border_color_nil_1.docx │ │ │ ├── border_color_nil_2.docx │ │ │ ├── properties │ │ │ │ ├── table_header │ │ │ │ │ ├── table_row_header_disabled.docx │ │ │ │ │ └── table_row_header_enabled.docx │ │ │ │ └── table_row_header_spec.rb │ │ │ ├── row_cells_spacing.docx │ │ │ └── table_row_height.docx │ │ ├── style │ │ │ ├── table_style_banding_2.docx │ │ │ ├── table_style_banging_2_empty.docx │ │ │ ├── table_style_columns_none.docx │ │ │ └── table_style_shade_none.docx │ │ ├── table_borders_spec.rb │ │ ├── table_in_table.docx │ │ ├── table_properties_spec.rb │ │ ├── table_row_spec.rb │ │ └── table_style_spec.rb │ └── table_spec.rb ├── empty_doc_spec.rb ├── notes │ ├── footer.docx │ └── header_footer_count.docx ├── notes_spec.rb ├── other │ └── empty_zip_docx.docx ├── page_properties │ ├── columns │ │ ├── columns_separator │ │ │ ├── no_separator.docx │ │ │ └── with_separator.docx │ │ ├── columns_separator_spec.rb │ │ ├── columns_space.docx │ │ ├── equal_columns │ │ │ ├── equal_columns.docx │ │ │ ├── equal_columns_undefined.docx │ │ │ └── non_equal_columns.docx │ │ ├── left_column.docx │ │ ├── right_column.docx │ │ ├── several_types_of_columns.docx │ │ ├── ten_columns.docx │ │ └── two_columns.docx │ ├── columns_spec.rb │ ├── page_borders │ │ └── page_border_offset.docx │ ├── page_margins │ │ └── page_margins.docx │ ├── page_numbering │ │ └── page_num_type_empty_format.docx │ ├── page_size │ │ ├── a3.docx │ │ ├── a4.docx │ │ ├── a5.docx │ │ ├── b5.docx │ │ ├── envelope_10.docx │ │ ├── envelope_choukei_3.docx │ │ ├── envelope_dl.docx │ │ ├── page_size_custom.docx │ │ ├── roc_16k.docx │ │ ├── super_b_a3.docx │ │ ├── tabloid.docx │ │ ├── tabloid_oversize.docx │ │ ├── unrecognized_page_size.docx │ │ ├── us_legal.docx │ │ ├── us_letter_album.docx │ │ └── us_letter_portrait.docx │ ├── page_size_spec.rb │ ├── title_page │ │ ├── title_page_default.docx │ │ └── title_page_enabled.docx │ └── title_page_spec.rb ├── page_properties_spec.rb ├── paragraph_properties │ └── paragraph_borders │ │ ├── empty_borders_properties.docx │ │ └── empty_borders_properties_spec.rb ├── relationships │ └── simple_relationshipt_file.docx ├── relationships_spec.rb ├── sdt │ ├── paragraph │ │ └── hyperlink │ │ │ ├── hyperlink_with_run_in_sdt_spec.rb │ │ │ └── runs │ │ │ ├── hyperlink_run_with_tab.docx │ │ │ ├── hyperlink_with_runs.docx │ │ │ └── run_with_space_preserve.docx │ ├── sdt_in_document.docx │ ├── sdt_with_table.docx │ └── std_element_parent.docx ├── sdt_in_document_spec.rb ├── settings │ ├── default_tab │ │ └── default_tab_stop.docx │ ├── default_tab_spec.rb │ └── no_setting_xml.docx ├── settings_spec.rb ├── theme │ ├── font_scheme │ │ └── simple_docx.docx │ └── font_scheme_spec.rb ├── theme_color │ ├── 000_lastClr.docx │ └── no_theme_xml.docx ├── theme_color_spec.rb ├── with_data │ ├── header.docx │ ├── no_data.docx │ ├── page_break.docx │ ├── paragraph_without_paragraph_properties.docx │ ├── section_break.docx │ ├── several_empty_paragraphs.docx │ ├── shape.docx │ └── text_in_paragraph.docx └── with_data_spec.rb ├── ooxml_parser ├── borders_properties_spec.rb ├── borders_spec.rb ├── color │ ├── color_class_methods_spec.rb │ ├── color_equal_spec.rb │ ├── color_looks_like_spec.rb │ ├── color_parse_hex_string_spec.rb │ ├── color_to_color_spec.rb │ └── color_within_delta_spec.rb ├── color_spec.rb ├── coordinates │ └── coordinates_parser_coordinates_range_spec.rb ├── coordinates_spec.rb ├── document_style_spec.rb ├── docx_blip_spec.rb ├── docx_color_scheme_spec.rb ├── docx_paragraph_run_spec.rb ├── encryption_checker_spec.rb ├── fill_spec.rb ├── header_footer_child_spec.rb ├── hsl_color_spec.rb ├── indents_spec.rb ├── notes_spec.rb ├── ooxml_color_spec.rb ├── ooxml_coordinates_spec.rb ├── ooxml_document_object │ └── boolean_attribute_value_spec.rb ├── ooxml_document_object_spec.rb ├── ooxml_size_spec.rb ├── page_properties_spec.rb ├── page_size_spec.rb ├── paragraph_borders_spec.rb ├── paragraph_margins_spec.rb ├── run_properties_spec.rb ├── scheme_color_spec.rb ├── shade_spec.rb ├── spacing_spec.rb ├── spacing_valued_child_spec.rb ├── string_helper_spec.rb ├── table_margins_spec.rb ├── table_position_spec.rb ├── table_spec.rb ├── tabs_spec.rb ├── theme_color_spec.rb └── underline_spec.rb ├── presentation ├── _files │ └── empty_file.pptx ├── comment_authors │ └── simple_comment_authors.pptx ├── comments │ └── comments.pptx ├── comments_authors_spec.rb ├── comments_spec.rb ├── editor_specific_documents │ ├── libreoffice │ │ └── simple_text.pptx │ └── ms_office_2013 │ │ └── simple_text.pptx ├── editor_specific_documents_spec.rb ├── notes │ └── notes.pptx ├── notes_spec.rb ├── pptx_settings_spec.rb ├── relationships │ └── presentation_relationships.pptx ├── relationships_spec.rb ├── settings │ └── measurement.pptx ├── slide │ ├── alternate_content │ │ ├── properties │ │ │ ├── direction │ │ │ │ ├── transition_direction.pptx │ │ │ │ ├── transition_direction_down.pptx │ │ │ │ ├── transition_direction_in.pptx │ │ │ │ └── transition_direction_up.pptx │ │ │ └── transition_direction_spec.rb │ │ └── transition │ │ │ ├── properties │ │ │ └── empty_transition_properties.pptx │ │ │ └── transition_properties_spec.rb │ ├── background │ │ ├── background_fill_spec.rb │ │ ├── fill │ │ │ ├── background_image_fill_spec.rb │ │ │ ├── image │ │ │ │ ├── image_fill.pptx │ │ │ │ └── image_no_embedded.pptx │ │ │ ├── slide_gradient.pptx │ │ │ ├── slide_pattern.pptx │ │ │ └── slide_pattern_preset.pptx │ │ └── properties │ │ │ ├── blip_fill │ │ │ └── stretch.pptx │ │ │ └── blip_fill_spec.rb │ ├── chart_content_distribute_vertically.pptx │ ├── common_slide_data │ │ ├── shape_tree │ │ │ ├── docx_picture │ │ │ │ ├── docx_blip │ │ │ │ │ └── docx_blip_file_reference_empty.pptx │ │ │ │ └── docx_blip_spec.rb │ │ │ └── shape_tree.pptx │ │ └── shape_tree_spec.rb │ ├── connection_shape │ │ └── connection_shape_exists.pptx │ ├── connection_shape_spec.rb │ ├── graphic_frame │ │ ├── graphic_data │ │ │ ├── chart │ │ │ │ ├── altername_content │ │ │ │ │ └── chart_on_slide.pptx │ │ │ │ ├── alternate_content_spec.rb │ │ │ │ ├── chart_type_spec.rb │ │ │ │ ├── shape_properties │ │ │ │ │ ├── line │ │ │ │ │ │ ├── chart_borders.pptx │ │ │ │ │ │ ├── chart_line_zero.pptx │ │ │ │ │ │ ├── chart_stroke_0.5.pptx │ │ │ │ │ │ └── chart_stroke_no_line.pptx │ │ │ │ │ └── shape_properties_line_spec.rb │ │ │ │ └── type │ │ │ │ │ └── column_charts.pptx │ │ │ ├── ole_object │ │ │ │ └── graphic_data_ole.pptx │ │ │ ├── ole_object_graphic_data_spec.rb │ │ │ └── table │ │ │ │ ├── grid │ │ │ │ ├── columns │ │ │ │ │ └── table_grid_columns_width.pptx │ │ │ │ └── table_grid_columns_spec.rb │ │ │ │ ├── properties │ │ │ │ ├── fill │ │ │ │ │ └── table_properties_fill.pptx │ │ │ │ ├── style │ │ │ │ │ └── table_color.pptx │ │ │ │ ├── table_look │ │ │ │ │ └── table_look.pptx │ │ │ │ ├── table_look_spec.rb │ │ │ │ ├── table_properties_fill_spec.rb │ │ │ │ └── table_style_spec.rb │ │ │ │ └── rows │ │ │ │ ├── cells │ │ │ │ ├── cell_properties_spec.rb │ │ │ │ └── properties │ │ │ │ │ ├── merged_cells.pptx │ │ │ │ │ ├── table_background_color.pptx │ │ │ │ │ ├── table_border_style.pptx │ │ │ │ │ ├── table_cell_vertical_align_bottom.pptx │ │ │ │ │ ├── table_cell_vertical_align_top.pptx │ │ │ │ │ ├── table_style_background_color.pptx │ │ │ │ │ └── text_direction.pptx │ │ │ │ ├── height │ │ │ │ └── table_row_heigth.pptx │ │ │ │ └── table_row_height_spec.rb │ │ ├── non_visual_properties │ │ │ ├── common_properties │ │ │ │ └── property_title.pptx │ │ │ └── common_properties_spec.rb │ │ ├── offset │ │ │ ├── image_shift.pptx │ │ │ ├── image_size.pptx │ │ │ └── transform_offset.pptx │ │ ├── offset_spec.rb │ │ ├── transform │ │ │ └── chart_transform_size.pptx │ │ └── transform_spec.rb │ ├── image_horizontal_alignment_center.pptx │ ├── image_vertical_alignment_middle.pptx │ ├── picture │ │ ├── picture_exists.pptx │ │ └── picture_not_exist.pptx │ ├── picture_spec.rb │ ├── shape │ │ ├── non_visual_properties │ │ │ └── common_properties │ │ │ │ ├── hover_hyperlink │ │ │ │ └── hover_hyperlink.pptx │ │ │ │ ├── hover_hyperlink_spec.rb │ │ │ │ ├── on_click_hyperlink │ │ │ │ └── highlight_click.pptx │ │ │ │ └── on_click_hyperlink_spec.rb │ │ ├── properties │ │ │ ├── name │ │ │ │ ├── shape_group_naming.pptx │ │ │ │ └── shape_naming.pptx │ │ │ └── shape_properties_name_spec.rb │ │ └── text_body │ │ │ ├── paragraphs │ │ │ ├── properties │ │ │ │ ├── numbering │ │ │ │ │ ├── bullet.pptx │ │ │ │ │ ├── image.pptx │ │ │ │ │ └── numbering.pptx │ │ │ │ ├── paragraph_numbering_spec.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabs.pptx │ │ │ │ └── tabs_spec.rb │ │ │ └── runs │ │ │ │ └── properties │ │ │ │ ├── align │ │ │ │ └── align_left.pptx │ │ │ │ ├── align_spec.rb │ │ │ │ ├── font_color │ │ │ │ ├── font_color_1.pptx │ │ │ │ ├── font_color_2.pptx │ │ │ │ └── font_color_3.pptx │ │ │ │ ├── font_color_spec.rb │ │ │ │ ├── font_name │ │ │ │ └── default_font_name.pptx │ │ │ │ ├── font_name_spec.rb │ │ │ │ ├── font_size │ │ │ │ └── default_font_size.pptx │ │ │ │ ├── font_size_spec.rb │ │ │ │ ├── font_style │ │ │ │ ├── chart_title_bold.pptx │ │ │ │ ├── chart_title_without_bold.pptx │ │ │ │ ├── copy_style_in_table_with_bold.pptx │ │ │ │ ├── copy_style_in_table_with_bold_2_cell_with_bold_text_too.pptx │ │ │ │ ├── copy_style_in_table_without_bold.pptx │ │ │ │ ├── font_style_not_underlined.pptx │ │ │ │ ├── font_style_underlined_none.pptx │ │ │ │ ├── several_paragraphs_font_style.pptx │ │ │ │ ├── strike_style_no_strike.pptx │ │ │ │ └── strikeout.pptx │ │ │ │ ├── font_style_spec.rb │ │ │ │ ├── hyperlink │ │ │ │ ├── hyperlink_to_slide.pptx │ │ │ │ ├── hyperlink_to_specific_slide.pptx │ │ │ │ ├── hyperlink_without_id.pptx │ │ │ │ └── link_in_text_area.pptx │ │ │ │ ├── hyperlink_spec.rb │ │ │ │ ├── outline │ │ │ │ └── default_outline_width.pptx │ │ │ │ ├── outline_spec.rb │ │ │ │ ├── run_space_spec.rb │ │ │ │ └── space │ │ │ │ ├── default_space.pptx │ │ │ │ ├── spacing.pptx │ │ │ │ ├── spacing_0.1cm.pptx │ │ │ │ ├── spacing_1_cm.pptx │ │ │ │ ├── spacing_5_cm.pptx │ │ │ │ ├── spacing_line_rule_exact.pptx │ │ │ │ ├── spacing_line_rule_exact_0.35.pptx │ │ │ │ ├── spacing_line_rule_exact_1.76.pptx │ │ │ │ └── spacing_line_rule_multiple.pptx │ │ │ ├── properties │ │ │ ├── vertical_align_bottom.pptx │ │ │ └── vertical_align_top.pptx │ │ │ └── text_body_properties_spec.rb │ ├── shape_bottom_vertical_align.pptx │ ├── shape_grouping_spec.rb │ ├── shape_only_horizontal.pptx │ ├── shape_only_verticaly.pptx │ ├── shape_unknown_location.pptx │ ├── shapes_grouping │ │ ├── grouping_chart.pptx │ │ ├── grouping_shape.pptx │ │ └── grouping_with_connector.pptx │ ├── table_right_horizontal_align.pptx │ ├── timing │ │ └── time_node │ │ │ ├── animation │ │ │ └── animation_no_transition.pptx │ │ │ ├── condition │ │ │ ├── condition_list_check.pptx │ │ │ └── condition_no_event.pptx │ │ │ └── time_node_audio.pptx │ ├── timing_spec.rb │ └── transition │ │ ├── properties │ │ ├── transition_direction_nil_1.pptx │ │ ├── transition_direction_nil_2.pptx │ │ └── transition_no_orientation.pptx │ │ ├── sound_action │ │ ├── tranistion_sound_action.pptx │ │ └── transition_without_sound_name.pptx │ │ ├── transition_properties_spec.rb │ │ ├── transition_sound_action_spec.rb │ │ ├── transition_wheel │ │ └── tranision_wheel.pptx │ │ └── transition_wheel_spec.rb ├── slide_layouts │ └── broken_slide_layout_file.pptx ├── slide_layouts_spec.rb ├── slide_masters_spec.rb ├── slide_spec.rb ├── table_styles │ └── table_cell_style │ │ ├── table_cell_border │ │ └── simple_table_cell_border.pptx │ │ └── table_cell_border_spec.rb ├── theme │ ├── classic_theme.pptx │ ├── no_theme_name.pptx │ └── theme_standart.pptx ├── theme_spec.rb ├── with_data │ ├── blip_fill.pptx │ ├── chart.pptx │ ├── docx_picture.pptx │ ├── no_data.pptx │ ├── second_slide.pptx │ ├── shape.pptx │ ├── shape_with_preset_geometry.pptx │ ├── slide_with_text.pptx │ └── table.pptx └── with_data_spec.rb ├── spec_helper.rb └── workbook ├── all_formula_values_spec.rb ├── all_formula_values_spec ├── all_formulas_values.xlsx ├── complex_formula_valuse.xlsx ├── empty_formulas.xlsx └── value_of_empty_f.xlsx ├── cell └── workbook_cell.xlsx ├── chartsheets └── file_with_chartsheets.xlsx ├── chartsheets_spec.rb ├── defined_name ├── defined_name.xlsx └── defined_name_spec.rb ├── editor_specific_documents ├── libreoffice │ └── simple_text.xlsx └── ms_office_2013 │ └── simple_text.xlsx ├── editor_specific_workbooks_spec.rb ├── hyperlink_spec.rb ├── hyperlinks ├── hyperlink_empty_id.xlsx └── hyperlink_internal.xlsx ├── ole_object ├── alternate_content │ └── choice │ │ ├── ole_object │ │ └── ole_object_in_alternate.xlsx │ │ └── ole_object_in_alternate_spec.rb └── ole_presnt.xlsx ├── ole_object_spec.rb ├── pivot_cache ├── pivot_cache.xlsx ├── pivot_cache_defenition_cache_field_spec.rb ├── pivot_cache_defenition_cache_fields_spec.rb ├── pivot_cache_defenition_shared_items_spec.rb └── pivot_cache_defenition_spec.rb ├── pivot_cache_spec.rb ├── pivot_table ├── column_fields │ ├── column_fields.xlsx │ └── column_fields_spec.rb ├── data_fields │ ├── data_fields.xlsx │ └── data_fields_spec.rb ├── page_fields │ ├── page_fields.xlsx │ └── page_fields_spec.rb ├── pivot_fields.xlsx ├── pivot_fields │ ├── pivot_field_items_spec.rb │ ├── pivot_fields_name.xlsx │ └── pivot_table_definition_spec.rb ├── pivot_table.xlsx ├── pivot_table_definition_spec.rb ├── pivot_table_location_spec.rb ├── pivot_table_style_info_spec.rb ├── row_column_items │ └── row_column_items_spec.rb └── row_fields │ ├── row_fields.xlsx │ └── row_fields_spec.rb ├── shared_strings └── custom_shared_strings_name.xlsx ├── shared_strings_spec.rb ├── sheet ├── sheet.xlsx └── sheet_spec.rb ├── specific_files └── unknown_scheme_color.xlsx ├── specific_files_spec.rb ├── styles └── fonts │ ├── font_color │ └── font_color.xlsx │ ├── font_color_spec.rb │ ├── font_vertical_alignment │ └── font_vertical_alignment.xlsx │ └── font_vertical_alignment_spec.rb ├── tables ├── autofilter │ ├── filter_column │ │ ├── show_filter_button_disabled.xlsx │ │ └── show_filter_button_enabled.xlsx │ └── filter_column_spec.rb ├── extensions │ ├── x14_table │ │ └── x14_table_alternative_text.xlsx │ └── x14_table_alternate_text_spec.rb ├── format_as_table.xlsx ├── relation_to_table.xlsx ├── table_columns │ └── table_columns_data.xlsx ├── table_columns_spec.rb ├── table_style_info │ ├── table_style_info_column_stripes.xlsx │ └── table_style_info_name.xlsx └── table_style_info_spec.rb ├── tables_spec.rb ├── theme └── theme_without_name.xlsx ├── theme_spec.rb ├── with_data ├── columns_without_custom_width.xlsx ├── custom_column_width.xlsx ├── no_data.xlsx ├── second_list.xlsx └── text_in_cell.xlsx ├── with_data_spec.rb ├── workbook_cell_spec.rb ├── workbook_properties ├── workbook_properties_date1904.xlsx └── workbook_properties_spec.rb ├── workbook_protection ├── workbook_protection.xlsx └── workbook_protection_spec.rb └── worksheet ├── autofilter ├── autofilter.xlsx ├── custom_filter │ └── custom_filter.xlsx └── custom_filter_spec.rb ├── autofilter_spec.rb ├── columns ├── column_best_fit.xlsx ├── column_hidden.xlsx ├── column_style_spec.rb ├── columns_width_custom.xlsx └── style │ └── column_style.xlsx ├── columns_spec.rb ├── comments ├── characters │ └── properties │ │ ├── color │ │ └── color_unknown.xlsx │ │ └── comment_characters_color_spec.rb ├── comment_text_object.xlsx └── comments.xlsx ├── comments_spec.rb ├── drawing ├── client_data │ ├── client_data.xlsx │ └── client_data_spec.rb ├── connection_shape │ └── connection_shape_exists.xlsx ├── drawing_connection_shape_spec.rb ├── drawing_grouping_spec.rb ├── drawing_positon_spec.rb ├── grouping │ ├── chart_grouping.xlsx │ └── shape_grouping.xlsx ├── one_cell_anchor.xlsx ├── picture │ ├── chart │ │ ├── axises │ │ │ ├── axis_display_none.xlsx │ │ │ ├── axis_display_overlay.xlsx │ │ │ ├── axis_display_x.xlsx │ │ │ ├── axis_not_display_x.xlsx │ │ │ ├── axis_position.xlsx │ │ │ ├── axis_root_element.docx │ │ │ ├── scaling_orientation.xlsx │ │ │ └── tick_label_position.xlsx │ │ ├── chart_3d_view │ │ │ └── rotation_x.xlsx │ │ ├── chart_axis_ids_spec.rb │ │ ├── chart_axises_spec.rb │ │ ├── chart_labels_spec.rb │ │ ├── chart_legend_spec.rb │ │ ├── chart_multichart_spec.rb │ │ ├── chart_pivot_formats_spec.rb │ │ ├── chart_series_spec.rb │ │ ├── chart_title_spec.rb │ │ ├── chart_types_spec.rb │ │ ├── chart_vary_colors_spec.rb │ │ ├── chart_view_3d_spec.rb │ │ ├── data │ │ │ ├── chart_data_points_spec.rb │ │ │ └── points │ │ │ │ ├── chart_data_points_3d_chart.xlsx │ │ │ │ ├── chart_data_points_empty.xlsx │ │ │ │ └── empty_num_ref.xlsx │ │ ├── labels │ │ │ └── chart_labels_position.xlsx │ │ ├── legend │ │ │ ├── left_position_with_overlay.xlsx │ │ │ ├── legend_left_overlay.xlsx │ │ │ ├── legend_left_position.xlsx │ │ │ ├── legend_right.xlsx │ │ │ ├── legend_right_overlay.xlsx │ │ │ ├── legend_show_category_name.xlsx │ │ │ └── legend_show_series_name.xlsx │ │ ├── multichart │ │ │ └── multichart.xlsx │ │ ├── pivot_formats │ │ │ └── chart_with_pivot_formats.xlsx │ │ ├── plot_area │ │ │ └── plot_with_typese.xlsx │ │ ├── plot_area_spec.rb │ │ ├── series │ │ │ ├── categories │ │ │ │ ├── categories.xlsx │ │ │ │ └── categories_number_reference.xlsx │ │ │ ├── categories_spec.rb │ │ │ ├── chart_series_data_label_spec.rb │ │ │ ├── chart_series_not_nil.xlsx │ │ │ ├── data_labels │ │ │ │ └── chart_series_have_data_label.xlsx │ │ │ ├── index │ │ │ │ └── index.xlsx │ │ │ ├── order │ │ │ │ └── order.xlsx │ │ │ ├── series_index_spec.rb │ │ │ ├── series_order_spec.rb │ │ │ ├── series_values_spec.rb │ │ │ ├── text │ │ │ │ └── string_reference │ │ │ │ │ ├── formula │ │ │ │ │ └── formula.xlsx │ │ │ │ │ ├── number_string_cache_spec.rb │ │ │ │ │ ├── string_cache │ │ │ │ │ ├── point_index.xlsx │ │ │ │ │ ├── point_index_text.xlsx │ │ │ │ │ └── string_cache_point_count.xlsx │ │ │ │ │ └── string_reference_formula_spec.rb │ │ │ └── values │ │ │ │ └── series_values.xlsx │ │ ├── title │ │ │ ├── chart_custom_title.xlsx │ │ │ ├── chart_with_empty_title.xlsx │ │ │ ├── chart_with_titile.xlsx │ │ │ └── chart_without_title.xlsx │ │ ├── type │ │ │ ├── bar_clustered_3d.xlsx │ │ │ ├── chart-line-3d.xlsx │ │ │ └── pie_3d.xlsx │ │ └── vary_colors │ │ │ ├── vary_colors_false.xlsx │ │ │ └── vary_colors_true.xlsx │ ├── file_reference_to_url.xlsx │ ├── image_incorrect_link.xlsx │ ├── image_size.xlsx │ ├── incorrect_image_resource.xlsx │ └── picture_with_non_visual.xlsx ├── picture_spec.rb ├── position │ └── drawing_positon_offste_units.xlsx └── shape │ ├── locks_text │ ├── locks_text.xlsx │ └── locks_text_spec.rb │ ├── non_visual_properties │ ├── common_non_visual_properties │ │ ├── cnvsp_description.xlsx │ │ └── cnvsp_title.xlsx │ └── common_nvsp_spec.rb │ ├── properties │ ├── fill_color │ │ └── value │ │ │ └── gradient_stops │ │ │ ├── gradient_stops_color │ │ │ └── gradient_stops_color_preset.xlsx │ │ │ └── gradient_stops_color_spec.rb │ ├── line │ │ ├── stroke_color_1.xlsx │ │ ├── stroke_color_2.xlsx │ │ ├── stroke_width_6px.xlsx │ │ └── stroke_width_none.xlsx │ ├── line_properties_spec.rb │ ├── preset_text_wrap │ │ ├── transform_arch_up.xlsx │ │ └── transform_text_circle.xlsx │ ├── preset_text_wrap_spec.rb │ ├── shape_line.xlsx │ └── shape_spacing.xlsx │ ├── shape_properties_spec.rb │ └── text_body │ ├── body_properties │ ├── body_properties_column_distance.xlsx │ └── body_properties_number_columns.xlsx │ ├── paragraphs │ ├── alternate_context │ │ ├── math │ │ │ └── math_in_shape.xlsx │ │ └── math_in_shape_spec.rb │ ├── paragraph_runs_spec.rb │ ├── properties │ │ ├── spacing │ │ │ └── spacing_after_ooxmlsize.xlsx │ │ └── spacing_spec.rb │ ├── runs │ │ ├── properties │ │ │ ├── baseline_subscript.xlsx │ │ │ ├── baseline_superscript.xlsx │ │ │ ├── fill_without_outline.xlsx │ │ │ ├── gradient_fill.xlsx │ │ │ ├── linear_gradient_no_scaled.xlsx │ │ │ ├── outline_width_6px.xlsx │ │ │ ├── outline_without_fill.xlsx │ │ │ ├── run_properties_spacing_spec.rb │ │ │ ├── shape_with_link.xlsx │ │ │ └── spacing │ │ │ │ └── run_properties_spacing.xlsx │ │ ├── run_properties_spec.rb │ │ └── shape_paragraph_run.xlsx │ ├── text_field │ │ └── text_field.xlsx │ └── text_field_spec.rb │ └── text_body_body_properties_spec.rb ├── drawing_spec.rb ├── extensions ├── conditional_formattings │ ├── conditional_formatting_average.xlsx │ ├── conditional_formatting_date.xlsx │ ├── conditional_formatting_rule │ │ ├── color_scale │ │ │ ├── color_scale.xlsx │ │ │ └── color_scale_spec.rb │ │ ├── conditional_formatting_rule_spec.rb │ │ ├── conditional_formatting_rule_types_spec.rb │ │ ├── conditional_rule_format │ │ │ ├── conditional_rule_format_spec.rb │ │ │ └── conditional_rule_style_sheet_format_spec.rb │ │ ├── data_bar │ │ │ ├── conditional_format_value_object │ │ │ │ └── conditional_format_value_object_spec.rb │ │ │ ├── data_bar.xlsx │ │ │ └── data_bar_spec.rb │ │ └── icon_set │ │ │ ├── conditional_formatting_icon │ │ │ └── conditional_formatting_icon_spec.rb │ │ │ ├── icon_set.xlsx │ │ │ └── icon_set_spec.rb │ ├── conditional_formatting_spec.rb │ ├── conditional_formatting_stop_if_true.xlsx │ ├── conditional_formatting_text.xlsx │ ├── conditional_formatting_top_10.xlsx │ ├── conditional_formatting_value_is.xlsx │ └── conditional_formattings_spec.rb ├── data_validations │ ├── data_validation.xlsx │ ├── data_validation │ │ └── data_validation_formula_spec.rb │ ├── data_validation_spec.rb │ └── data_validations_spec.rb ├── sparkline_groups │ ├── sparkline_group │ │ ├── sparkline_color_object.xlsx │ │ ├── sparkline_display_empty_cells.xlsx │ │ ├── sparkline_display_hidden.xlsx │ │ ├── sparkline_group_type.xlsx │ │ ├── sparkline_line_weight.xlsx │ │ ├── sparkline_manual_max.xlsx │ │ ├── sparkline_options.xlsx │ │ ├── sparkline_points_colors.xlsx │ │ ├── sparkline_show_points.xlsx │ │ └── sparkline_spec.rb │ └── sparkline_group_spec.rb └── user_protected_range │ ├── user_protected_range.xlsx │ └── user_protected_range_spec.rb ├── header_footer ├── header_footer.xlsx └── header_footer_spec.rb ├── page_margins └── simple_page_margins.xlsx ├── page_margins_spec.rb ├── page_setup └── simple_page_setup.xlsx ├── page_setup_spec.rb ├── protected_range ├── protected_range.xlsx └── protected_range_spec.rb ├── row_spec.rb ├── rows ├── cells │ ├── cell_style_spec.rb │ ├── cell_text_spec.rb │ ├── formula │ │ └── t_formula.xlsx │ ├── formula_spec.rb │ ├── style │ │ ├── borders │ │ │ ├── border_style_spec.rb │ │ │ └── style │ │ │ │ ├── border_style_medium_dash.xlsx │ │ │ │ └── borders_style_none.xlsx │ │ ├── cell_alignment │ │ │ └── cell_align_default_horizontal.xlsx │ │ ├── cell_alignment_spec.rb │ │ ├── cell_border_color.xlsx │ │ ├── cell_format.xlsx │ │ ├── cell_numerical_general.xlsx │ │ ├── cell_style_compare │ │ │ └── cell_style_compare_1.xlsx │ │ ├── cell_style_compare_spec.rb │ │ ├── cell_style_fill_color_spec.rb │ │ ├── cell_style_font_spec.rb │ │ ├── cell_style_num_format │ │ │ ├── cell_style_num_format_disabled.xlsx │ │ │ ├── cell_style_num_format_enabled.xlsx │ │ │ └── cell_style_num_format_value.xlsx │ │ ├── cell_style_num_format_spec.rb │ │ ├── cell_text_align_top.xlsx │ │ ├── fill_color │ │ │ ├── cell_fill_color.xlsx │ │ │ ├── cell_style_fill_color_tint_0.35.xlsx │ │ │ ├── cell_style_fill_color_tint_0.5.xlsx │ │ │ ├── cell_style_fill_color_tint_0_theme_0.xlsx │ │ │ ├── cell_style_fill_color_tint_0_theme_1.xlsx │ │ │ ├── fill_color_nil.xlsx │ │ │ └── fill_color_none.xlsx │ │ ├── font │ │ │ ├── cell_style_no_font_name.xlsx │ │ │ ├── font_bold.xlsx │ │ │ ├── font_color_237_125_49.xlsx │ │ │ ├── font_color_255_255_255.xlsx │ │ │ ├── font_color_black.xlsx │ │ │ ├── font_color_standart_255_0_0.xlsx │ │ │ ├── font_size_spec.rb │ │ │ ├── font_strikeout.xlsx │ │ │ ├── size │ │ │ │ ├── font_size_float.xlsx │ │ │ │ └── font_size_not_string.xlsx │ │ │ └── underline_single.xlsx │ │ └── protection │ │ │ ├── protection.xlsx │ │ │ └── protection_spec.rb │ └── text │ │ ├── abs_formula.xlsx │ │ ├── formula_doc.xlsx │ │ ├── lookup_formula.xlsx │ │ ├── text_not_empty.xlsx │ │ ├── text_not_starting_with_quote.xlsx │ │ └── text_starting_with_quote.xlsx ├── row_custom_height.xlsx ├── row_height_nil.xlsx ├── row_height_ooxml_size.xlsx ├── row_style │ └── custom_row_style.xlsx └── row_style_spec.rb ├── sheet_protection ├── sheet_protection.xlsx └── sheet_protection_spec.rb ├── sheet_view ├── freeze_panes.xlsx ├── gridlines │ ├── hide_gridlines.xlsx │ └── show_gridlines.xlsx ├── pane_spec.rb ├── row_column_headings │ ├── hide_headers.xlsx │ └── show_headers.xlsx ├── selection_spec.rb ├── sheet_view.xlsx ├── show_gridlines_spec.rb └── show_row_column_heading_spec.rb └── sheet_view_spec.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-rubies-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/workflows/nightly-rubies-checks.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/Rakefile -------------------------------------------------------------------------------- /example/file_verification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/example/file_verification/README.md -------------------------------------------------------------------------------- /example/file_verification/file_verification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/example/file_verification/file_verification.rb -------------------------------------------------------------------------------- /lib/ooxml_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/borders_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/borders_properties.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/color.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/color/color_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/color/color_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/color/color_indexes.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/color/color_indexes.list -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/color/ooxml_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/color/ooxml_color.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/color_alpha_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/color_alpha_channel.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/color_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/color_properties.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/hsl_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/hsl_color.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/image_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/image_fill.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/scheme_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/scheme_color.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/theme_colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/theme_colors.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/colors/tile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/colors/tile.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/content_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/content_types.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/coordinates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/coordinates.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/font_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/font_style.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/hyperlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/hyperlink.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/ooxml_document_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/ooxml_document_object.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/paragraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/paragraph.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/relationships.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/relationships/relationship.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/properties/table_look.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/properties/table_look.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/row/cell/cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/row/cell/cell.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/row/cell/grid_span.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/row/cell/grid_span.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/row/row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/row/row.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/table_grid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/table_grid.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/table/table_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/table/table_properties.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/underline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/underline.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_data/valued_child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_data/valued_child.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/common_document_structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/common_document_structure.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/parser/encryption_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/parser/encryption_checker.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/common_parser/parser/ooxml_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/common_parser/parser/ooxml_file.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/configuration.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/comments.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/comments/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/comments/comment.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/comments_extended.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/comments_extended.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/default_style_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/default_style_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/document_background.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/document_background.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/document_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/document_properties.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/document_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/document_settings.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/document_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/document_style.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/docx_paragraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/docx_paragraph.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/indents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/indents.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/header_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/header_footer.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/numbering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/numbering.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/page_properties/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/page_properties/note.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/docx_parser/document_structure/styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/docx_parser/document_structure/styles.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/helpers/string_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/helpers/string_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/name.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/comment_authors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/comment_authors.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/presentation_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/presentation_comments.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/presentation_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/presentation_helpers.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/presentation_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/presentation_theme.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/background.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/background.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/common_slide_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/common_slide_data.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/connection_shape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/connection_shape.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/slide/shapes_grouping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/slide/shapes_grouping.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/slide/timing.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/slide_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/slide_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide/transition/transition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide/transition/transition.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide_layout_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide_layout_file.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide_layouts_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide_layouts_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide_master_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide_master_file.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide_masters_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide_masters_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/slide_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/slide_size.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/pptx_parser/presentation/table_styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/pptx_parser/presentation/table_styles.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/version.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/chartsheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/chartsheet.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/defined_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/defined_name.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/pivot_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/pivot_cache.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/pivot_table_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/pivot_table_definition.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/pivot_table_definition/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/pivot_table_definition/location.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/shared_string_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/shared_string_table.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/sheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/sheet.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/cell_xfs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/cell_xfs.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/cell_xfs/xf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/cell_xfs/xf.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fills.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fills/fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fills/fill.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fonts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fonts.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fonts/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/fonts/font.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/number_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/number_formats.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/workbook_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/workbook_helpers.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/workbook_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/workbook_properties.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/workbook_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/workbook_protection.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/excel_comments/author.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/ole_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/ole_objects.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/page_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/page_setup.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/protected_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/protected_range.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_protection.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view/pane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view/pane.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view/selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/sheet_view/selection.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/table_part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/table_part.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/table_part/autofilter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/table_part/autofilter.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/worksheet_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/worksheet_helper.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_columns.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_drawing.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_header_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_header_footer.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_row.rb -------------------------------------------------------------------------------- /lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_row/xlsx_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/ooxml_parser/xlsx_parser/workbook/worksheet/xlsx_row/xlsx_cell.rb -------------------------------------------------------------------------------- /lib/truffleruby_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/lib/truffleruby_patch.rb -------------------------------------------------------------------------------- /ooxml_parser.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/ooxml_parser.gemspec -------------------------------------------------------------------------------- /spec/common/file_name/full_file_name.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_name/full_file_name.docx -------------------------------------------------------------------------------- /spec/common/file_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_name_spec.rb -------------------------------------------------------------------------------- /spec/common/file_path/file_path.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_path/file_path.docx -------------------------------------------------------------------------------- /spec/common/file_path/file_path.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_path/file_path.pptx -------------------------------------------------------------------------------- /spec/common/file_path/file_path.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_path/file_path.xlsx -------------------------------------------------------------------------------- /spec/common/file_path_in_scructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_path_in_scructure_spec.rb -------------------------------------------------------------------------------- /spec/common/file_type_recognize/simple_docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_type_recognize/simple_docx.docx -------------------------------------------------------------------------------- /spec/common/file_type_recognize/simple_pptx.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_type_recognize/simple_pptx.pptx -------------------------------------------------------------------------------- /spec/common/file_type_recognize/simple_xlsx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_type_recognize/simple_xlsx.xlsx -------------------------------------------------------------------------------- /spec/common/file_type_recognize/simple_zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_type_recognize/simple_zip.zip -------------------------------------------------------------------------------- /spec/common/file_type_recognizer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/file_type_recognizer_spec.rb -------------------------------------------------------------------------------- /spec/common/ooxml_document_object/to_hash/text_in_paragraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/ooxml_document_object/to_hash/text_in_paragraph.docx -------------------------------------------------------------------------------- /spec/common/ooxml_document_object/to_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/ooxml_document_object/to_hash_spec.rb -------------------------------------------------------------------------------- /spec/common/password_protected/files/password_protected.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/password_protected/files/password_protected.docx -------------------------------------------------------------------------------- /spec/common/password_protected/files/password_protected.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/password_protected/files/password_protected.pptx -------------------------------------------------------------------------------- /spec/common/password_protected/files/password_protected.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/password_protected/files/password_protected.xlsx -------------------------------------------------------------------------------- /spec/common/password_protected/password_protected_no_password_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/common/password_protected/password_protected_no_password_spec.rb -------------------------------------------------------------------------------- /spec/document/background/document_background.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/background/document_background.docx -------------------------------------------------------------------------------- /spec/document/background/document_background_fill.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/background/document_background_fill.docx -------------------------------------------------------------------------------- /spec/document/background/document_background_fill_no_type.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/background/document_background_fill_no_type.docx -------------------------------------------------------------------------------- /spec/document/comments/comment_object.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments/comment_object.docx -------------------------------------------------------------------------------- /spec/document/comments/comments_paragraphs_with_ids.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments/comments_paragraphs_with_ids.docx -------------------------------------------------------------------------------- /spec/document/comments_document/comments_document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_document/comments_document.docx -------------------------------------------------------------------------------- /spec/document/comments_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_document_spec.rb -------------------------------------------------------------------------------- /spec/document/comments_extended/comment_with_parent_id.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_extended/comment_with_parent_id.docx -------------------------------------------------------------------------------- /spec/document/comments_extended/comments_extended.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_extended/comments_extended.docx -------------------------------------------------------------------------------- /spec/document/comments_extended_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_extended_spec.rb -------------------------------------------------------------------------------- /spec/document/comments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/comments_spec.rb -------------------------------------------------------------------------------- /spec/document/compare/compare_two_paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/compare_two_paragraphs.docx -------------------------------------------------------------------------------- /spec/document/compare/different_set/first.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/different_set/first.docx -------------------------------------------------------------------------------- /spec/document/compare/different_set/second.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/different_set/second.docx -------------------------------------------------------------------------------- /spec/document/compare/set_1/first.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_1/first.docx -------------------------------------------------------------------------------- /spec/document/compare/set_1/second.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_1/second.docx -------------------------------------------------------------------------------- /spec/document/compare/set_2/first.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_2/first.docx -------------------------------------------------------------------------------- /spec/document/compare/set_2/second.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_2/second.docx -------------------------------------------------------------------------------- /spec/document/compare/set_3/first.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_3/first.docx -------------------------------------------------------------------------------- /spec/document/compare/set_3/second.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/set_3/second.docx -------------------------------------------------------------------------------- /spec/document/compare/two_same_docs/first.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/two_same_docs/first.docx -------------------------------------------------------------------------------- /spec/document/compare/two_same_docs/second.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare/two_same_docs/second.docx -------------------------------------------------------------------------------- /spec/document/compare_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/compare_spec.rb -------------------------------------------------------------------------------- /spec/document/document_background_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_background_spec.rb -------------------------------------------------------------------------------- /spec/document/document_content_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_content_type_spec.rb -------------------------------------------------------------------------------- /spec/document/document_properties/no_app_xml_file.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_properties/no_app_xml_file.docx -------------------------------------------------------------------------------- /spec/document/document_properties/no_word_statistic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_properties/no_word_statistic.docx -------------------------------------------------------------------------------- /spec/document/document_properties/page_count.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_properties/page_count.docx -------------------------------------------------------------------------------- /spec/document/document_properties/word_count.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_properties/word_count.docx -------------------------------------------------------------------------------- /spec/document/document_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/document_structure/numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_structure/numbering.docx -------------------------------------------------------------------------------- /spec/document/document_structure/shape_header_footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_structure/shape_header_footer.docx -------------------------------------------------------------------------------- /spec/document/document_structure/table_header_footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_structure/table_header_footer.docx -------------------------------------------------------------------------------- /spec/document/document_structure/text_header_footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_structure/text_header_footer.docx -------------------------------------------------------------------------------- /spec/document/document_structure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_structure_spec.rb -------------------------------------------------------------------------------- /spec/document/document_style/defaults/run_properties_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/defaults/run_properties_default_spec.rb -------------------------------------------------------------------------------- /spec/document/document_style/document_style_based_on_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/document_style_based_on_style.docx -------------------------------------------------------------------------------- /spec/document/document_style/document_style_default.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/document_style_default.docx -------------------------------------------------------------------------------- /spec/document/document_style/file_to_compare_to_himself.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/file_to_compare_to_himself.docx -------------------------------------------------------------------------------- /spec/document/document_style/new_paragraph_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/new_paragraph_style.docx -------------------------------------------------------------------------------- /spec/document/document_style/no_styles_xml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/no_styles_xml.docx -------------------------------------------------------------------------------- /spec/document/document_style/paragraph_style_id_word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/paragraph_style_id_word.docx -------------------------------------------------------------------------------- /spec/document/document_style/stlye_table_cell_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/stlye_table_cell_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/document_style/style_exists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/style_exists.docx -------------------------------------------------------------------------------- /spec/document/document_style/style_visibility.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/style_visibility.docx -------------------------------------------------------------------------------- /spec/document/document_style/table_document_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_document_style.docx -------------------------------------------------------------------------------- /spec/document/document_style/table_style/paragraph_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_style/paragraph_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/document_style/table_style/table_style_height.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_style/table_style_height.docx -------------------------------------------------------------------------------- /spec/document/document_style/table_style_properties_document_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_style_properties_document_style.docx -------------------------------------------------------------------------------- /spec/document/document_style/table_style_properties_type.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_style_properties_type.docx -------------------------------------------------------------------------------- /spec/document/document_style/table_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style/table_style_spec.rb -------------------------------------------------------------------------------- /spec/document/document_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/document_style_spec.rb -------------------------------------------------------------------------------- /spec/document/editor_specific_documents/libreoffice/simple_text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/editor_specific_documents/libreoffice/simple_text.docx -------------------------------------------------------------------------------- /spec/document/editor_specific_documents/ms_office_2013/simple_text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/editor_specific_documents/ms_office_2013/simple_text.docx -------------------------------------------------------------------------------- /spec/document/editor_specific_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/editor_specific_documents_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/formula/bar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/bar_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/formula/formula_accent_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/formula_accent_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/formula/group_char_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/group_char_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_accent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_accent.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_bar_1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_bar_1.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_bar_2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_bar_2.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_brackets.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_brackets.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_complex.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_complex.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_function.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_function.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_group_char.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_group_char.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_integral.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_integral.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_limit.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_limit.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/formula_symbol.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/formula_symbol.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/fraction.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/fraction.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/matrix.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/matrix.docx -------------------------------------------------------------------------------- /spec/document/elements/formula/types/nary_formula_type.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula/types/nary_formula_type.docx -------------------------------------------------------------------------------- /spec/document/elements/formula_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/formula_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/align/all_four_alignes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/align/all_four_alignes.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/bookmark/bookmark_basic.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/bookmark/bookmark_basic.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/bookmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/bookmark_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/borders/border_properties_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/borders/border_properties_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/borders/border_size_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/borders/border_size_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/borders/border_size_pt_8.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/borders/border_size_pt_8.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/borders/borders_space_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/borders/borders_space_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/borders/dropcap_borders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/borders/dropcap_borders.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/comment_range_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/comment_range_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/comments_range/comments_range.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/comments_range/comments_range.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/indents/indents_comparasion.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/indents/indents_comparasion.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/indents/indents_round.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/indents/indents_round.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/indents/no_indents_default_style.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/indents/no_indents_default_style.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/inserted/inserted_run.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/inserted/inserted_run.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/inserted_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/inserted_run_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/instruction_type.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/instruction_type.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/keep_lines_together.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/keep_lines_together.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/keep_next.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/keep_next.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/nonempty_runs/endnote_nonempty_runs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/nonempty_runs/endnote_nonempty_runs.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/nonempty_runs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/nonempty_runs_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/nonempty_numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/nonempty_numbering.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_font_name.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_font_name.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_in_header.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_in_header.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_in_shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_in_shape.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_in_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_in_table.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_multilevel_type.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_multilevel_type.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering/numbering_suffix.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering/numbering_suffix.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/numbering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/numbering_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/page_break_before.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/page_break_before.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/page_numbering.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/page_numbering.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragarph_indents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragarph_indents_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragraph_align_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragraph_align_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragraph_background_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragraph_background_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragraph_borders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragraph_borders_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragraph_equals.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragraph_equals.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/paragraph_style_several_paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/paragraph_style_several_paragraphs.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/borders/border_color_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/borders/border_color_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/contextual_spacing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/contextual_spacing_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/frame_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/frame_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/indents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/indents_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/keep_next/keep_next.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/keep_next/keep_next.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/keep_next_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/keep_next_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/paragraph_spacing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/paragraph_spacing_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/run_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/run_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/shade/simple_shade.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/shade/simple_shade.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/tabs/tab_leader.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/tabs/tab_leader.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/tabs/tabs_position.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/tabs/tabs_position.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/properties/tabs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/properties/tabs_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/run_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/caps_characters_on.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/caps_characters_on.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/doc_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/doc_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/drawing_offset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/drawing_offset_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/graphic/chart_title.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/graphic/chart_title.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/graphic/picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/graphic/picture_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/graphic/text_art_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/graphic/text_art_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing/shape_grouping.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing/shape_grouping.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/drawing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/drawing_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/color.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/color.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/color_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/color_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/font_color_01.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/font_color_01.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/font_color_02.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/font_color_02.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/font_color_03.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/font_color_03.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color/font_color_04.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color/font_color_04.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_color_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/font_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/font_style_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/footnote_reference_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/footnote_reference_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/formula_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/formula_type_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/link/field_inside_hyperlink.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/link/field_inside_hyperlink.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/link/hyperlink.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/link/hyperlink.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/link/hyperlink_tooltip.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/link/hyperlink_tooltip.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/link/link_xpath_error.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/link/link_xpath_error.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/link/run_with_link.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/link/run_with_link.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/object/yotube_ole_object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/object/yotube_ole_object_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/paragraph_run_hyperlink_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/paragraph_run_hyperlink_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/paragraph_run_link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/paragraph_run_link_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/paragraph_run_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/paragraph_run_text_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/properties/ligatures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/properties/ligatures_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/properties/position_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/properties/position_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/properties/run_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/properties/run_style_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/properties/shade_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/properties/shade_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/run_font_properties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/run_font_properties.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/runs_font_size_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/runs_font_size_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/size/default_font_size.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/size/default_font_size.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/size/font_size_float.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/size/font_size_float.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/copy_table_from_cse.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/copy_table_from_cse.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/nonbreaking_hyphen.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/nonbreaking_hyphen.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/shape_with_text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/shape_with_text.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/tab_inside_run.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/tab_inside_run.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/table_merge.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/table_merge.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/text_box_list.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/text_box_list.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/text_inside_field.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/text_inside_field.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/runs/text/text_line_break.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/runs/text/text_line_break.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/section_indent_hanging_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/section_indent_hanging_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/contextual_spacing_false.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/contextual_spacing_false.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/contextual_spacing_true.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/contextual_spacing_true.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/default_spacing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/default_spacing.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/line_rule.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/line_rule.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/space_default_spacing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/space_default_spacing.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/spacing_is_2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/spacing_is_2.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing/table_line_spacing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing/table_line_spacing.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/spacing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/spacing_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph/std/sdt_form_properties/form.docxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/std/sdt_form_properties/form.docxf -------------------------------------------------------------------------------- /spec/document/elements/paragraph/std/std_content/doc_without_sdt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/std/std_content/doc_without_sdt.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/std/std_content/sdt_content_text.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/std/std_content/sdt_content_text.docx -------------------------------------------------------------------------------- /spec/document/elements/paragraph/std/std_content_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph/std/std_content_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/paragraph_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/paragraph_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/borders/table_borders.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/borders/table_borders.docx -------------------------------------------------------------------------------- /spec/document/elements/table/borders/table_borders_visual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/borders/table_borders_visual.docx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/cell_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/cell_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/cell/elements/table_cell_sdt_element.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/elements/table_cell_sdt_element.docx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/borders_properties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/borders_properties.docx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/grid_span_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/grid_span_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/margin/margin.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/margin/margin.pptx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/margin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/margin_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/shade_nil.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/shade_nil.docx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/table_cell_shade.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/table_cell_shade.docx -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/table_cell_width_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/table_cell_width_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/cell/properties/text_direction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/properties/text_direction_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/cell/table_cell_elements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/cell/table_cell_elements_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/caption/table_caption.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/caption/table_caption.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_border_size.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_border_size.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_caption_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_caption_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_cell_margin.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_cell_margin.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_cell_spacing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_cell_spacing_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_description_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_description_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_indent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_indent.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_indent_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_indent_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_layout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_layout_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_look.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_look.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_properties_jc_left.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_properties_jc_left.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_shade_color.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_shade_color.docx -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_style_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/properties/table_width_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/properties/table_width_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/row/border_color_nil_1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/row/border_color_nil_1.docx -------------------------------------------------------------------------------- /spec/document/elements/table/row/border_color_nil_2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/row/border_color_nil_2.docx -------------------------------------------------------------------------------- /spec/document/elements/table/row/properties/table_row_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/row/properties/table_row_header_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/row/row_cells_spacing.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/row/row_cells_spacing.docx -------------------------------------------------------------------------------- /spec/document/elements/table/row/table_row_height.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/row/table_row_height.docx -------------------------------------------------------------------------------- /spec/document/elements/table/style/table_style_banding_2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/style/table_style_banding_2.docx -------------------------------------------------------------------------------- /spec/document/elements/table/style/table_style_banging_2_empty.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/style/table_style_banging_2_empty.docx -------------------------------------------------------------------------------- /spec/document/elements/table/style/table_style_columns_none.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/style/table_style_columns_none.docx -------------------------------------------------------------------------------- /spec/document/elements/table/style/table_style_shade_none.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/style/table_style_shade_none.docx -------------------------------------------------------------------------------- /spec/document/elements/table/table_borders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/table_borders_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/table_in_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/table_in_table.docx -------------------------------------------------------------------------------- /spec/document/elements/table/table_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/table_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/table_row_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/table_row_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table/table_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table/table_style_spec.rb -------------------------------------------------------------------------------- /spec/document/elements/table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/elements/table_spec.rb -------------------------------------------------------------------------------- /spec/document/empty_doc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/empty_doc_spec.rb -------------------------------------------------------------------------------- /spec/document/notes/footer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/notes/footer.docx -------------------------------------------------------------------------------- /spec/document/notes/header_footer_count.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/notes/header_footer_count.docx -------------------------------------------------------------------------------- /spec/document/notes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/notes_spec.rb -------------------------------------------------------------------------------- /spec/document/other/empty_zip_docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/other/empty_zip_docx.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/columns_separator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/columns_separator_spec.rb -------------------------------------------------------------------------------- /spec/document/page_properties/columns/columns_space.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/columns_space.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/equal_columns/equal_columns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/equal_columns/equal_columns.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/left_column.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/left_column.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/right_column.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/right_column.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/several_types_of_columns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/several_types_of_columns.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/ten_columns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/ten_columns.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns/two_columns.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns/two_columns.docx -------------------------------------------------------------------------------- /spec/document/page_properties/columns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/columns_spec.rb -------------------------------------------------------------------------------- /spec/document/page_properties/page_borders/page_border_offset.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_borders/page_border_offset.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_margins/page_margins.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_margins/page_margins.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/a3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/a3.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/a4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/a4.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/a5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/a5.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/b5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/b5.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/envelope_10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/envelope_10.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/envelope_choukei_3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/envelope_choukei_3.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/envelope_dl.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/envelope_dl.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/page_size_custom.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/page_size_custom.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/roc_16k.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/roc_16k.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/super_b_a3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/super_b_a3.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/tabloid.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/tabloid.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/tabloid_oversize.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/tabloid_oversize.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/unrecognized_page_size.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/unrecognized_page_size.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/us_legal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/us_legal.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/us_letter_album.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/us_letter_album.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size/us_letter_portrait.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size/us_letter_portrait.docx -------------------------------------------------------------------------------- /spec/document/page_properties/page_size_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/page_size_spec.rb -------------------------------------------------------------------------------- /spec/document/page_properties/title_page/title_page_default.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/title_page/title_page_default.docx -------------------------------------------------------------------------------- /spec/document/page_properties/title_page/title_page_enabled.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/title_page/title_page_enabled.docx -------------------------------------------------------------------------------- /spec/document/page_properties/title_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties/title_page_spec.rb -------------------------------------------------------------------------------- /spec/document/page_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/page_properties_spec.rb -------------------------------------------------------------------------------- /spec/document/relationships/simple_relationshipt_file.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/relationships/simple_relationshipt_file.docx -------------------------------------------------------------------------------- /spec/document/relationships_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/relationships_spec.rb -------------------------------------------------------------------------------- /spec/document/sdt/paragraph/hyperlink/runs/hyperlink_run_with_tab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt/paragraph/hyperlink/runs/hyperlink_run_with_tab.docx -------------------------------------------------------------------------------- /spec/document/sdt/paragraph/hyperlink/runs/hyperlink_with_runs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt/paragraph/hyperlink/runs/hyperlink_with_runs.docx -------------------------------------------------------------------------------- /spec/document/sdt/sdt_in_document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt/sdt_in_document.docx -------------------------------------------------------------------------------- /spec/document/sdt/sdt_with_table.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt/sdt_with_table.docx -------------------------------------------------------------------------------- /spec/document/sdt/std_element_parent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt/std_element_parent.docx -------------------------------------------------------------------------------- /spec/document/sdt_in_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/sdt_in_document_spec.rb -------------------------------------------------------------------------------- /spec/document/settings/default_tab/default_tab_stop.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/settings/default_tab/default_tab_stop.docx -------------------------------------------------------------------------------- /spec/document/settings/default_tab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/settings/default_tab_spec.rb -------------------------------------------------------------------------------- /spec/document/settings/no_setting_xml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/settings/no_setting_xml.docx -------------------------------------------------------------------------------- /spec/document/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/settings_spec.rb -------------------------------------------------------------------------------- /spec/document/theme/font_scheme/simple_docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/theme/font_scheme/simple_docx.docx -------------------------------------------------------------------------------- /spec/document/theme/font_scheme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/theme/font_scheme_spec.rb -------------------------------------------------------------------------------- /spec/document/theme_color/000_lastClr.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/theme_color/000_lastClr.docx -------------------------------------------------------------------------------- /spec/document/theme_color/no_theme_xml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/theme_color/no_theme_xml.docx -------------------------------------------------------------------------------- /spec/document/theme_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/theme_color_spec.rb -------------------------------------------------------------------------------- /spec/document/with_data/header.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/header.docx -------------------------------------------------------------------------------- /spec/document/with_data/no_data.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/no_data.docx -------------------------------------------------------------------------------- /spec/document/with_data/page_break.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/page_break.docx -------------------------------------------------------------------------------- /spec/document/with_data/paragraph_without_paragraph_properties.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/paragraph_without_paragraph_properties.docx -------------------------------------------------------------------------------- /spec/document/with_data/section_break.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/section_break.docx -------------------------------------------------------------------------------- /spec/document/with_data/several_empty_paragraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/several_empty_paragraphs.docx -------------------------------------------------------------------------------- /spec/document/with_data/shape.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/shape.docx -------------------------------------------------------------------------------- /spec/document/with_data/text_in_paragraph.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data/text_in_paragraph.docx -------------------------------------------------------------------------------- /spec/document/with_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/document/with_data_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/borders_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/borders_properties_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/borders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/borders_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_class_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_class_methods_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_equal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_equal_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_looks_like_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_looks_like_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_parse_hex_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_parse_hex_string_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_to_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_to_color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color/color_within_delta_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color/color_within_delta_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/coordinates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/coordinates_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/document_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/document_style_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/docx_blip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/docx_blip_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/docx_color_scheme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/docx_color_scheme_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/docx_paragraph_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/docx_paragraph_run_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/encryption_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/encryption_checker_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/fill_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/fill_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/header_footer_child_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/header_footer_child_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/hsl_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/hsl_color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/indents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/indents_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/notes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/notes_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/ooxml_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/ooxml_color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/ooxml_coordinates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/ooxml_coordinates_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/ooxml_document_object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/ooxml_document_object_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/ooxml_size_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/ooxml_size_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/page_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/page_properties_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/page_size_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/page_size_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/paragraph_borders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/paragraph_borders_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/paragraph_margins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/paragraph_margins_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/run_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/run_properties_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/scheme_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/scheme_color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/shade_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/shade_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/spacing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/spacing_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/spacing_valued_child_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/spacing_valued_child_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/string_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/string_helper_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/table_margins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/table_margins_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/table_position_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/table_position_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/table_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/tabs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/tabs_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/theme_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/theme_color_spec.rb -------------------------------------------------------------------------------- /spec/ooxml_parser/underline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/ooxml_parser/underline_spec.rb -------------------------------------------------------------------------------- /spec/presentation/_files/empty_file.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/_files/empty_file.pptx -------------------------------------------------------------------------------- /spec/presentation/comment_authors/simple_comment_authors.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/comment_authors/simple_comment_authors.pptx -------------------------------------------------------------------------------- /spec/presentation/comments/comments.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/comments/comments.pptx -------------------------------------------------------------------------------- /spec/presentation/comments_authors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/comments_authors_spec.rb -------------------------------------------------------------------------------- /spec/presentation/comments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/comments_spec.rb -------------------------------------------------------------------------------- /spec/presentation/editor_specific_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/editor_specific_documents_spec.rb -------------------------------------------------------------------------------- /spec/presentation/notes/notes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/notes/notes.pptx -------------------------------------------------------------------------------- /spec/presentation/notes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/notes_spec.rb -------------------------------------------------------------------------------- /spec/presentation/pptx_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/pptx_settings_spec.rb -------------------------------------------------------------------------------- /spec/presentation/relationships/presentation_relationships.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/relationships/presentation_relationships.pptx -------------------------------------------------------------------------------- /spec/presentation/relationships_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/relationships_spec.rb -------------------------------------------------------------------------------- /spec/presentation/settings/measurement.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/settings/measurement.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/background_fill_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/background_fill_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/background_image_fill_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/background_image_fill_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/image/image_fill.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/image/image_fill.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/image/image_no_embedded.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/image/image_no_embedded.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/slide_gradient.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/slide_gradient.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/slide_pattern.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/slide_pattern.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/fill/slide_pattern_preset.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/fill/slide_pattern_preset.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/properties/blip_fill/stretch.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/properties/blip_fill/stretch.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/background/properties/blip_fill_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/background/properties/blip_fill_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/chart_content_distribute_vertically.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/chart_content_distribute_vertically.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/common_slide_data/shape_tree/shape_tree.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/common_slide_data/shape_tree/shape_tree.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/common_slide_data/shape_tree_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/common_slide_data/shape_tree_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/connection_shape/connection_shape_exists.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/connection_shape/connection_shape_exists.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/connection_shape_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/connection_shape_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/graphic_frame/offset/image_shift.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/graphic_frame/offset/image_shift.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/graphic_frame/offset/image_size.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/graphic_frame/offset/image_size.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/graphic_frame/offset/transform_offset.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/graphic_frame/offset/transform_offset.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/graphic_frame/offset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/graphic_frame/offset_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/graphic_frame/transform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/graphic_frame/transform_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/image_horizontal_alignment_center.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/image_horizontal_alignment_center.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/image_vertical_alignment_middle.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/image_vertical_alignment_middle.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/picture/picture_exists.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/picture/picture_exists.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/picture/picture_not_exist.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/picture/picture_not_exist.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/picture_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/shape/properties/name/shape_group_naming.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape/properties/name/shape_group_naming.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shape/properties/name/shape_naming.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape/properties/name/shape_naming.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shape/properties/shape_properties_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape/properties/shape_properties_name_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/shape/text_body/text_body_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape/text_body/text_body_properties_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/shape_bottom_vertical_align.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape_bottom_vertical_align.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shape_grouping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape_grouping_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/shape_only_horizontal.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape_only_horizontal.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shape_only_verticaly.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape_only_verticaly.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shape_unknown_location.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shape_unknown_location.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shapes_grouping/grouping_chart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shapes_grouping/grouping_chart.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shapes_grouping/grouping_shape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shapes_grouping/grouping_shape.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/shapes_grouping/grouping_with_connector.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/shapes_grouping/grouping_with_connector.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/table_right_horizontal_align.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/table_right_horizontal_align.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/timing/time_node/time_node_audio.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/timing/time_node/time_node_audio.pptx -------------------------------------------------------------------------------- /spec/presentation/slide/timing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/timing_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/transition/transition_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/transition/transition_properties_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/transition/transition_sound_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/transition/transition_sound_action_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide/transition/transition_wheel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide/transition/transition_wheel_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide_layouts/broken_slide_layout_file.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide_layouts/broken_slide_layout_file.pptx -------------------------------------------------------------------------------- /spec/presentation/slide_layouts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide_layouts_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide_masters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide_masters_spec.rb -------------------------------------------------------------------------------- /spec/presentation/slide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/slide_spec.rb -------------------------------------------------------------------------------- /spec/presentation/theme/classic_theme.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/theme/classic_theme.pptx -------------------------------------------------------------------------------- /spec/presentation/theme/no_theme_name.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/theme/no_theme_name.pptx -------------------------------------------------------------------------------- /spec/presentation/theme/theme_standart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/theme/theme_standart.pptx -------------------------------------------------------------------------------- /spec/presentation/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/theme_spec.rb -------------------------------------------------------------------------------- /spec/presentation/with_data/blip_fill.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/blip_fill.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/chart.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/chart.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/docx_picture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/docx_picture.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/no_data.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/no_data.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/second_slide.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/second_slide.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/shape.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/shape.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/shape_with_preset_geometry.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/shape_with_preset_geometry.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/slide_with_text.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/slide_with_text.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data/table.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data/table.pptx -------------------------------------------------------------------------------- /spec/presentation/with_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/presentation/with_data_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/workbook/all_formula_values_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/all_formula_values_spec.rb -------------------------------------------------------------------------------- /spec/workbook/all_formula_values_spec/all_formulas_values.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/all_formula_values_spec/all_formulas_values.xlsx -------------------------------------------------------------------------------- /spec/workbook/all_formula_values_spec/complex_formula_valuse.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/all_formula_values_spec/complex_formula_valuse.xlsx -------------------------------------------------------------------------------- /spec/workbook/all_formula_values_spec/empty_formulas.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/all_formula_values_spec/empty_formulas.xlsx -------------------------------------------------------------------------------- /spec/workbook/all_formula_values_spec/value_of_empty_f.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/all_formula_values_spec/value_of_empty_f.xlsx -------------------------------------------------------------------------------- /spec/workbook/cell/workbook_cell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/cell/workbook_cell.xlsx -------------------------------------------------------------------------------- /spec/workbook/chartsheets/file_with_chartsheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/chartsheets/file_with_chartsheets.xlsx -------------------------------------------------------------------------------- /spec/workbook/chartsheets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/chartsheets_spec.rb -------------------------------------------------------------------------------- /spec/workbook/defined_name/defined_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/defined_name/defined_name.xlsx -------------------------------------------------------------------------------- /spec/workbook/defined_name/defined_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/defined_name/defined_name_spec.rb -------------------------------------------------------------------------------- /spec/workbook/editor_specific_documents/libreoffice/simple_text.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/editor_specific_documents/libreoffice/simple_text.xlsx -------------------------------------------------------------------------------- /spec/workbook/editor_specific_workbooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/editor_specific_workbooks_spec.rb -------------------------------------------------------------------------------- /spec/workbook/hyperlink_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/hyperlink_spec.rb -------------------------------------------------------------------------------- /spec/workbook/hyperlinks/hyperlink_empty_id.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/hyperlinks/hyperlink_empty_id.xlsx -------------------------------------------------------------------------------- /spec/workbook/hyperlinks/hyperlink_internal.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/hyperlinks/hyperlink_internal.xlsx -------------------------------------------------------------------------------- /spec/workbook/ole_object/ole_presnt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/ole_object/ole_presnt.xlsx -------------------------------------------------------------------------------- /spec/workbook/ole_object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/ole_object_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_cache/pivot_cache.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache/pivot_cache.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_cache/pivot_cache_defenition_cache_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache/pivot_cache_defenition_cache_field_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_cache/pivot_cache_defenition_cache_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache/pivot_cache_defenition_cache_fields_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_cache/pivot_cache_defenition_shared_items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache/pivot_cache_defenition_shared_items_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_cache/pivot_cache_defenition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache/pivot_cache_defenition_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_cache_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/column_fields/column_fields.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/column_fields/column_fields.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/column_fields/column_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/column_fields/column_fields_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/data_fields/data_fields.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/data_fields/data_fields.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/data_fields/data_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/data_fields/data_fields_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/page_fields/page_fields.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/page_fields/page_fields.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/page_fields/page_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/page_fields/page_fields_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_fields.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_fields.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_fields/pivot_field_items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_fields/pivot_field_items_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_fields/pivot_fields_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_fields/pivot_fields_name.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_fields/pivot_table_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_fields/pivot_table_definition_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_table.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_table_definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_table_definition_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_table_location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_table_location_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/pivot_table_style_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/pivot_table_style_info_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/row_column_items/row_column_items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/row_column_items/row_column_items_spec.rb -------------------------------------------------------------------------------- /spec/workbook/pivot_table/row_fields/row_fields.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/row_fields/row_fields.xlsx -------------------------------------------------------------------------------- /spec/workbook/pivot_table/row_fields/row_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/pivot_table/row_fields/row_fields_spec.rb -------------------------------------------------------------------------------- /spec/workbook/shared_strings/custom_shared_strings_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/shared_strings/custom_shared_strings_name.xlsx -------------------------------------------------------------------------------- /spec/workbook/shared_strings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/shared_strings_spec.rb -------------------------------------------------------------------------------- /spec/workbook/sheet/sheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/sheet/sheet.xlsx -------------------------------------------------------------------------------- /spec/workbook/sheet/sheet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/sheet/sheet_spec.rb -------------------------------------------------------------------------------- /spec/workbook/specific_files/unknown_scheme_color.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/specific_files/unknown_scheme_color.xlsx -------------------------------------------------------------------------------- /spec/workbook/specific_files_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/specific_files_spec.rb -------------------------------------------------------------------------------- /spec/workbook/styles/fonts/font_color/font_color.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/styles/fonts/font_color/font_color.xlsx -------------------------------------------------------------------------------- /spec/workbook/styles/fonts/font_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/styles/fonts/font_color_spec.rb -------------------------------------------------------------------------------- /spec/workbook/styles/fonts/font_vertical_alignment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/styles/fonts/font_vertical_alignment_spec.rb -------------------------------------------------------------------------------- /spec/workbook/tables/autofilter/filter_column_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/autofilter/filter_column_spec.rb -------------------------------------------------------------------------------- /spec/workbook/tables/extensions/x14_table_alternate_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/extensions/x14_table_alternate_text_spec.rb -------------------------------------------------------------------------------- /spec/workbook/tables/format_as_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/format_as_table.xlsx -------------------------------------------------------------------------------- /spec/workbook/tables/relation_to_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/relation_to_table.xlsx -------------------------------------------------------------------------------- /spec/workbook/tables/table_columns/table_columns_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/table_columns/table_columns_data.xlsx -------------------------------------------------------------------------------- /spec/workbook/tables/table_columns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/table_columns_spec.rb -------------------------------------------------------------------------------- /spec/workbook/tables/table_style_info/table_style_info_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/table_style_info/table_style_info_name.xlsx -------------------------------------------------------------------------------- /spec/workbook/tables/table_style_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables/table_style_info_spec.rb -------------------------------------------------------------------------------- /spec/workbook/tables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/tables_spec.rb -------------------------------------------------------------------------------- /spec/workbook/theme/theme_without_name.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/theme/theme_without_name.xlsx -------------------------------------------------------------------------------- /spec/workbook/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/theme_spec.rb -------------------------------------------------------------------------------- /spec/workbook/with_data/columns_without_custom_width.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data/columns_without_custom_width.xlsx -------------------------------------------------------------------------------- /spec/workbook/with_data/custom_column_width.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data/custom_column_width.xlsx -------------------------------------------------------------------------------- /spec/workbook/with_data/no_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data/no_data.xlsx -------------------------------------------------------------------------------- /spec/workbook/with_data/second_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data/second_list.xlsx -------------------------------------------------------------------------------- /spec/workbook/with_data/text_in_cell.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data/text_in_cell.xlsx -------------------------------------------------------------------------------- /spec/workbook/with_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/with_data_spec.rb -------------------------------------------------------------------------------- /spec/workbook/workbook_cell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/workbook_cell_spec.rb -------------------------------------------------------------------------------- /spec/workbook/workbook_properties/workbook_properties_date1904.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/workbook_properties/workbook_properties_date1904.xlsx -------------------------------------------------------------------------------- /spec/workbook/workbook_properties/workbook_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/workbook_properties/workbook_properties_spec.rb -------------------------------------------------------------------------------- /spec/workbook/workbook_protection/workbook_protection.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/workbook_protection/workbook_protection.xlsx -------------------------------------------------------------------------------- /spec/workbook/workbook_protection/workbook_protection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/workbook_protection/workbook_protection_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/autofilter/autofilter.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/autofilter/autofilter.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/autofilter/custom_filter/custom_filter.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/autofilter/custom_filter/custom_filter.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/autofilter/custom_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/autofilter/custom_filter_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/autofilter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/autofilter_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns/column_best_fit.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns/column_best_fit.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns/column_hidden.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns/column_hidden.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns/column_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns/column_style_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns/columns_width_custom.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns/columns_width_custom.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns/style/column_style.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns/style/column_style.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/columns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/columns_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/comments/comment_text_object.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/comments/comment_text_object.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/comments/comments.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/comments/comments.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/comments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/comments_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/client_data/client_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/client_data/client_data.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/client_data/client_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/client_data/client_data_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/drawing_connection_shape_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/drawing_connection_shape_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/drawing_grouping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/drawing_grouping_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/drawing_positon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/drawing_positon_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/grouping/chart_grouping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/grouping/chart_grouping.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/grouping/shape_grouping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/grouping/shape_grouping.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/one_cell_anchor.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/one_cell_anchor.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_axis_ids_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_axis_ids_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_axises_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_axises_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_labels_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_legend_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_legend_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_multichart_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_multichart_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_series_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_series_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_title_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_title_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_types_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_types_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/chart_view_3d_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/chart_view_3d_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/legend/legend_right.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/legend/legend_right.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/plot_area_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/plot_area_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/series/index/index.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/series/index/index.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/series/order/order.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/series/order/order.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/type/chart-line-3d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/type/chart-line-3d.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/chart/type/pie_3d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/chart/type/pie_3d.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/file_reference_to_url.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/file_reference_to_url.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/image_incorrect_link.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/image_incorrect_link.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/image_size.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/image_size.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/incorrect_image_resource.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/incorrect_image_resource.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture/picture_with_non_visual.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture/picture_with_non_visual.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/picture_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/picture_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/shape/locks_text/locks_text.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/shape/locks_text/locks_text.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/shape/locks_text/locks_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/shape/locks_text/locks_text_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/shape/properties/shape_line.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/shape/properties/shape_line.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/shape/properties/shape_spacing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/shape/properties/shape_spacing.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing/shape/shape_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing/shape/shape_properties_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/drawing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/drawing_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/header_footer/header_footer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/header_footer/header_footer.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/header_footer/header_footer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/header_footer/header_footer_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/page_margins/simple_page_margins.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/page_margins/simple_page_margins.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/page_margins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/page_margins_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/page_setup/simple_page_setup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/page_setup/simple_page_setup.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/page_setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/page_setup_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/protected_range/protected_range.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/protected_range/protected_range.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/protected_range/protected_range_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/protected_range/protected_range_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/row_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/row_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/cell_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/cell_style_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/cell_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/cell_text_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/formula/t_formula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/formula/t_formula.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/formula_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/formula_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/borders/border_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/borders/border_style_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_alignment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_alignment_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_border_color.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_border_color.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_format.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_format.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_numerical_general.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_numerical_general.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_style_compare_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_style_compare_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_style_fill_color_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_style_fill_color_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_style_font_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_style_font_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_style_num_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_style_num_format_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/cell_text_align_top.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/cell_text_align_top.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/font/font_bold.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/font/font_bold.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/font/font_color_black.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/font/font_color_black.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/font/font_size_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/font/font_size_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/font/font_strikeout.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/font/font_strikeout.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/font/underline_single.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/font/underline_single.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/protection/protection.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/protection/protection.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/style/protection/protection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/style/protection/protection_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/text/abs_formula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/text/abs_formula.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/text/formula_doc.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/text/formula_doc.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/text/lookup_formula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/text/lookup_formula.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/text/text_not_empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/text/text_not_empty.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/cells/text/text_starting_with_quote.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/cells/text/text_starting_with_quote.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/row_custom_height.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/row_custom_height.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/row_height_nil.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/row_height_nil.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/row_height_ooxml_size.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/row_height_ooxml_size.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/row_style/custom_row_style.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/row_style/custom_row_style.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/rows/row_style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/rows/row_style_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_protection/sheet_protection.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_protection/sheet_protection.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_protection/sheet_protection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_protection/sheet_protection_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/freeze_panes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/freeze_panes.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/gridlines/hide_gridlines.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/gridlines/hide_gridlines.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/gridlines/show_gridlines.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/gridlines/show_gridlines.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/pane_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/pane_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/selection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/selection_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/sheet_view.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/sheet_view.xlsx -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/show_gridlines_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/show_gridlines_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view/show_row_column_heading_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view/show_row_column_heading_spec.rb -------------------------------------------------------------------------------- /spec/workbook/worksheet/sheet_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE-QA/ooxml_parser/HEAD/spec/workbook/worksheet/sheet_view_spec.rb --------------------------------------------------------------------------------