├── pst ├── example │ ├── .gitignore │ ├── example.proto │ └── example.st └── src │ └── dist │ └── NOTICE ├── settings.gradle ├── .travis.yml ├── wave ├── doc │ ├── agent.png │ ├── client │ │ ├── 01-blank.png │ │ ├── 03-open-wave.png │ │ ├── 04-some-text.png │ │ ├── 05-with-bar1.png │ │ ├── 05-with-bar2.png │ │ ├── 02-first-waves.png │ │ ├── 06-without-foo1.png │ │ └── 06-without-foo2.png │ ├── frontpage │ │ └── FedOne.png │ ├── 01-server-setting.jpg │ ├── 03-profile-settings.jpg │ ├── 02-database-settings.jpg │ ├── 04-administer-account.jpg │ ├── 05-external-components.png │ ├── 06-security-settings-tls.jpg │ ├── 05-external-components-02.png │ ├── 07-lockdown-user-creation.jpg │ └── 06-security-settings-tls-custom.jpg ├── war │ └── static │ │ ├── logo.png │ │ ├── favicon.ico │ │ ├── images │ │ └── unknown.jpg │ │ ├── wiab_screenshot.jpg │ │ └── wiab_screenshot_small.jpg ├── src │ ├── dist │ │ ├── jsongadgets.json │ │ ├── thumbnail_patterns │ │ │ ├── deb │ │ │ ├── exec │ │ │ ├── font │ │ │ ├── html │ │ │ ├── misc │ │ │ ├── plan │ │ │ ├── rpm │ │ │ ├── tar │ │ │ ├── tgz │ │ │ ├── txt │ │ │ ├── txt2 │ │ │ ├── www │ │ │ ├── zip │ │ │ ├── ascii │ │ │ ├── binary │ │ │ ├── empty │ │ │ ├── image │ │ │ ├── sound │ │ │ ├── vcard │ │ │ ├── video │ │ │ ├── contents2 │ │ │ ├── default │ │ │ ├── document │ │ │ ├── package │ │ │ ├── text-html │ │ │ ├── unknown │ │ │ ├── vcalendar │ │ │ ├── folder_tar │ │ │ ├── font_bitmap │ │ │ ├── font_type1 │ │ │ ├── mime_ascii │ │ │ ├── shellscript │ │ │ ├── spreadsheet │ │ │ ├── text_plain │ │ │ ├── font-x-generic │ │ │ ├── font_truetype │ │ │ ├── gnome-package │ │ │ ├── kpresenter_kpr │ │ │ ├── stock_calendar │ │ │ ├── stock_script │ │ │ ├── text-x-generic │ │ │ ├── text-x-script │ │ │ ├── wordprocessing │ │ │ ├── application_pdf │ │ │ ├── application_zip │ │ │ ├── audio-x-generic │ │ │ ├── image-x-generic │ │ │ ├── package_editors │ │ │ ├── template_source │ │ │ ├── video-x-generic │ │ │ ├── x-office-drawing │ │ │ ├── gnome-fs-executable │ │ │ ├── package-x-generic │ │ │ ├── stock_addressbook │ │ │ ├── stock_certificate │ │ │ ├── x-office-calendar │ │ │ ├── x-office-document │ │ │ ├── x-office-address-book │ │ │ ├── x-office-presentation │ │ │ ├── x-office-spreadsheet │ │ │ ├── application-certificate │ │ │ ├── application-x-executable │ │ │ ├── package_wordprocessing │ │ │ ├── text-x-generic-template │ │ │ ├── x-office-document-template │ │ │ ├── x-office-drawing-template │ │ │ ├── x-office-spreadsheet-template │ │ │ ├── x-office-presentation-template │ │ │ ├── application-vnd.ms-excel.sheet.macroEnabled.12 │ │ │ ├── application-vnd.ms-word.document.macroEnabled.12 │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroEnabled.12 │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet │ │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.template │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.template │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.template │ │ │ └── application-vnd.openxmlformats-officedocument.presentationml.presentation │ │ └── NOTICE │ └── main │ │ ├── resources │ │ ├── org │ │ │ ├── apache │ │ │ │ └── wave │ │ │ │ │ └── box │ │ │ │ │ └── server │ │ │ │ │ └── rpc │ │ │ │ │ └── avatar │ │ │ │ │ └── unknown.jpg │ │ │ └── waveprotocol │ │ │ │ ├── box │ │ │ │ └── webclient │ │ │ │ │ ├── search │ │ │ │ │ ├── mock │ │ │ │ │ │ └── unknown.jpg │ │ │ │ │ ├── images │ │ │ │ │ │ └── toolbar_empty.png │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── DigestDomMessages_fr.properties │ │ │ │ │ │ ├── DigestDomMessages_sl.properties │ │ │ │ │ │ ├── DigestDomMessages_de.properties │ │ │ │ │ │ ├── DigestDomMessages_en.properties │ │ │ │ │ │ ├── DigestDomMessages_zh_TW.properties │ │ │ │ │ │ ├── SearchPresenterMessages_de.properties │ │ │ │ │ │ ├── DigestDomMessages_es.properties │ │ │ │ │ │ ├── SearchWidgetMessages_de.properties │ │ │ │ │ │ ├── SearchWidgetMessages_zh_TW.properties │ │ │ │ │ │ ├── DigestDomMessages_ru.properties │ │ │ │ │ │ ├── SearchWidgetMessages_en.properties │ │ │ │ │ │ ├── SearchWidgetMessages_sl.properties │ │ │ │ │ │ ├── SearchWidgetMessages_es.properties │ │ │ │ │ │ └── SearchPresenterMessages_fr.properties │ │ │ │ │ ├── widget │ │ │ │ │ ├── frame │ │ │ │ │ │ ├── panel_e.png │ │ │ │ │ │ ├── panel_n.png │ │ │ │ │ │ ├── panel_s.png │ │ │ │ │ │ ├── panel_w.png │ │ │ │ │ │ ├── panel_ne.png │ │ │ │ │ │ ├── panel_nw.png │ │ │ │ │ │ ├── panel_se.png │ │ │ │ │ │ └── panel_sw.png │ │ │ │ │ └── loading │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── LoadingMessages_de.properties │ │ │ │ │ │ ├── LoadingMessages_en.properties │ │ │ │ │ │ ├── LoadingMessages_es.properties │ │ │ │ │ │ ├── LoadingMessages_zh_TW.properties │ │ │ │ │ │ ├── LoadingMessages_fr.properties │ │ │ │ │ │ ├── LoadingMessages_sl.properties │ │ │ │ │ │ └── LoadingMessages_ru.properties │ │ │ │ │ ├── client │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── SessionMessages_de.properties │ │ │ │ │ │ ├── WebClientMessages_de.properties │ │ │ │ │ │ ├── SavedStateMessages_zh_TW.properties │ │ │ │ │ │ ├── SavedStateMessages_en.properties │ │ │ │ │ │ ├── SessionMessages_zh_TW.properties │ │ │ │ │ │ ├── SavedStateMessages_es.properties │ │ │ │ │ │ ├── SavedStateMessages_de.properties │ │ │ │ │ │ ├── SessionMessages_en.properties │ │ │ │ │ │ ├── SessionMessages_sl.properties │ │ │ │ │ │ └── SessionMessages_es.properties │ │ │ │ │ └── common │ │ │ │ │ └── communication │ │ │ │ │ └── Communication.gwt.xml │ │ │ │ └── wave │ │ │ │ ├── client │ │ │ │ ├── editor │ │ │ │ │ ├── sugg │ │ │ │ │ │ ├── icon_undo.png │ │ │ │ │ │ └── icon_undo_hover.png │ │ │ │ │ └── harness │ │ │ │ │ │ └── public │ │ │ │ │ │ ├── pics │ │ │ │ │ │ ├── Snow.jpg │ │ │ │ │ │ ├── hills.jpg │ │ │ │ │ │ ├── hills-sm.jpg │ │ │ │ │ │ ├── yosemite.jpg │ │ │ │ │ │ ├── yosemite-sm.jpg │ │ │ │ │ │ └── Beautiful+View.jpg │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── thumb-c-2.png │ │ │ │ │ │ ├── thumb-e-2.png │ │ │ │ │ │ ├── thumb-n-2.png │ │ │ │ │ │ ├── thumb-ne-2.png │ │ │ │ │ │ ├── thumb-nw-2.png │ │ │ │ │ │ ├── thumb-s-2.png │ │ │ │ │ │ ├── thumb-se-2.png │ │ │ │ │ │ ├── thumb-sw-2.png │ │ │ │ │ │ └── thumb-w-2.png │ │ │ │ ├── widget │ │ │ │ │ ├── button │ │ │ │ │ │ ├── icon │ │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ │ ├── add-big.png │ │ │ │ │ │ │ ├── addDown.png │ │ │ │ │ │ │ ├── add_small.png │ │ │ │ │ │ │ ├── blue-plus.png │ │ │ │ │ │ │ ├── folder-open.png │ │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ │ ├── panel-close.png │ │ │ │ │ │ │ ├── add-big-down.png │ │ │ │ │ │ │ ├── folder-closed.png │ │ │ │ │ │ │ ├── panel-restore.png │ │ │ │ │ │ │ ├── popup-button.png │ │ │ │ │ │ │ ├── add_small_down.png │ │ │ │ │ │ │ ├── panel-close-down.png │ │ │ │ │ │ │ ├── panel-maximize.png │ │ │ │ │ │ │ ├── panel-minimize.png │ │ │ │ │ │ │ ├── spelly-dropdown.png │ │ │ │ │ │ │ ├── alert_close_button.png │ │ │ │ │ │ │ ├── button_digest_next.png │ │ │ │ │ │ │ ├── button_digest_prev.png │ │ │ │ │ │ │ ├── panel-close-hover.png │ │ │ │ │ │ │ ├── panel-restore-down.png │ │ │ │ │ │ │ ├── remove_tag_button.png │ │ │ │ │ │ │ ├── view_switcher_feed.png │ │ │ │ │ │ │ ├── panel-maximize-down.png │ │ │ │ │ │ │ ├── panel-maximize-hover.png │ │ │ │ │ │ │ ├── panel-minimize-down.png │ │ │ │ │ │ │ ├── panel-minimize-hover.png │ │ │ │ │ │ │ ├── panel-restore-hover.png │ │ │ │ │ │ │ ├── split_button_dropdown.png │ │ │ │ │ │ │ ├── view_switcher_avatar.png │ │ │ │ │ │ │ ├── view_switcher_single.png │ │ │ │ │ │ │ ├── alert_close_button_down.png │ │ │ │ │ │ │ ├── button_digest_next_down.png │ │ │ │ │ │ │ ├── button_digest_prev_down.png │ │ │ │ │ │ │ ├── popup-button-depressed.png │ │ │ │ │ │ │ ├── remove_tag_button_hover.png │ │ │ │ │ │ │ ├── view_switcher_feed_down.png │ │ │ │ │ │ │ ├── alert_close_button_hover.png │ │ │ │ │ │ │ ├── split_button_dropdown_down.png │ │ │ │ │ │ │ ├── view_switcher_avatar_down.png │ │ │ │ │ │ │ └── view_switcher_single_down.png │ │ │ │ │ │ └── text │ │ │ │ │ │ │ ├── button_left.png │ │ │ │ │ │ │ ├── button_middle.png │ │ │ │ │ │ │ ├── button_right.png │ │ │ │ │ │ │ ├── add_button_left.png │ │ │ │ │ │ │ ├── add_button_right.png │ │ │ │ │ │ │ ├── button_left_down.png │ │ │ │ │ │ │ ├── add_button_middle.png │ │ │ │ │ │ │ ├── button_middle_down.png │ │ │ │ │ │ │ ├── button_right_down.png │ │ │ │ │ │ │ ├── system_button_left.png │ │ │ │ │ │ │ ├── primary_button_left.png │ │ │ │ │ │ │ ├── primary_button_middle.png │ │ │ │ │ │ │ ├── primary_button_right.png │ │ │ │ │ │ │ ├── system_button_middle.png │ │ │ │ │ │ │ ├── system_button_right.png │ │ │ │ │ │ │ ├── system_button_left_down.png │ │ │ │ │ │ │ ├── primary_button_left_down.png │ │ │ │ │ │ │ ├── primary_button_middle_down.png │ │ │ │ │ │ │ ├── primary_button_right_down.png │ │ │ │ │ │ │ ├── system_button_middle_down.png │ │ │ │ │ │ │ └── system_button_right_down.png │ │ │ │ │ ├── toolbar │ │ │ │ │ │ ├── button_fill.png │ │ │ │ │ │ ├── toolbar_more_button.png │ │ │ │ │ │ └── buttons │ │ │ │ │ │ │ ├── arrow_vertical.png │ │ │ │ │ │ │ ├── arrow_horizontal.png │ │ │ │ │ │ │ ├── button_down_large.png │ │ │ │ │ │ │ └── toolbar_divider.png │ │ │ │ │ ├── popup │ │ │ │ │ │ └── desktopchrome │ │ │ │ │ │ │ ├── popup_e.png │ │ │ │ │ │ │ ├── popup_n.png │ │ │ │ │ │ │ ├── popup_ne.png │ │ │ │ │ │ │ ├── popup_nw.png │ │ │ │ │ │ │ ├── popup_s.png │ │ │ │ │ │ │ ├── popup_se.png │ │ │ │ │ │ │ ├── popup_sw.png │ │ │ │ │ │ │ ├── popup_w.png │ │ │ │ │ │ │ ├── popup_ene.png │ │ │ │ │ │ │ ├── popup_n_titled.png │ │ │ │ │ │ │ ├── popup_ne_titled.png │ │ │ │ │ │ │ └── popup_nw_titled.png │ │ │ │ │ └── profile │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── ProfilePopupMessages_de.properties │ │ │ │ │ │ ├── ProfilePopupMessages_en.properties │ │ │ │ │ │ ├── ProfilePopupMessages_es.properties │ │ │ │ │ │ ├── ProfilePopupMessages_fr.properties │ │ │ │ │ │ ├── ProfilePopupMessages_sl.properties │ │ │ │ │ │ ├── ProfilePopupMessages_zh_TW.properties │ │ │ │ │ │ └── ProfilePopupMessages_ru.properties │ │ │ │ ├── gadget │ │ │ │ │ └── renderer │ │ │ │ │ │ ├── meta_left.png │ │ │ │ │ │ ├── meta_mid.png │ │ │ │ │ │ ├── meta_more.png │ │ │ │ │ │ ├── meta_right.png │ │ │ │ │ │ ├── broken_gadget.png │ │ │ │ │ │ ├── meta_left_down.png │ │ │ │ │ │ ├── meta_mid_down.png │ │ │ │ │ │ ├── meta_mid_hover.png │ │ │ │ │ │ ├── meta_left_hover.png │ │ │ │ │ │ ├── meta_right_down.png │ │ │ │ │ │ └── meta_right_hover.png │ │ │ │ ├── doodad │ │ │ │ │ └── attachment │ │ │ │ │ │ └── render │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── meta_left.png │ │ │ │ │ │ ├── meta_mid.png │ │ │ │ │ │ ├── meta_more.png │ │ │ │ │ │ ├── meta_right.png │ │ │ │ │ │ ├── thumb-c-2.png │ │ │ │ │ │ ├── thumb-e-2.png │ │ │ │ │ │ ├── thumb-n-2.png │ │ │ │ │ │ ├── thumb-ne-2.png │ │ │ │ │ │ ├── thumb-nw-2.png │ │ │ │ │ │ ├── thumb-s-2.png │ │ │ │ │ │ ├── thumb-se-2.png │ │ │ │ │ │ ├── thumb-sw-2.png │ │ │ │ │ │ ├── thumb-w-2.png │ │ │ │ │ │ ├── meta_expand.png │ │ │ │ │ │ └── meta_contract.png │ │ │ │ ├── wavepanel │ │ │ │ │ ├── view │ │ │ │ │ │ └── dom │ │ │ │ │ │ │ └── full │ │ │ │ │ │ │ ├── callout.png │ │ │ │ │ │ │ ├── expanded.png │ │ │ │ │ │ │ ├── frame │ │ │ │ │ │ │ ├── e.png │ │ │ │ │ │ │ ├── n.png │ │ │ │ │ │ │ ├── ne.png │ │ │ │ │ │ │ ├── nw.png │ │ │ │ │ │ │ ├── s.png │ │ │ │ │ │ │ ├── se.png │ │ │ │ │ │ │ ├── sw.png │ │ │ │ │ │ │ ├── w.png │ │ │ │ │ │ │ ├── e_blur.png │ │ │ │ │ │ │ ├── e_edit.png │ │ │ │ │ │ │ ├── n_blur.png │ │ │ │ │ │ │ ├── n_edit.png │ │ │ │ │ │ │ ├── ne_blur.png │ │ │ │ │ │ │ ├── ne_edit.png │ │ │ │ │ │ │ ├── nw_blur.png │ │ │ │ │ │ │ ├── nw_edit.png │ │ │ │ │ │ │ ├── reply_e.png │ │ │ │ │ │ │ ├── reply_n.png │ │ │ │ │ │ │ ├── reply_s.png │ │ │ │ │ │ │ ├── reply_w.png │ │ │ │ │ │ │ ├── s_blur.png │ │ │ │ │ │ │ ├── s_edit.png │ │ │ │ │ │ │ ├── se_blur.png │ │ │ │ │ │ │ ├── se_edit.png │ │ │ │ │ │ │ ├── sw_blur.png │ │ │ │ │ │ │ ├── sw_edit.png │ │ │ │ │ │ │ ├── w_blur.png │ │ │ │ │ │ │ ├── w_edit.png │ │ │ │ │ │ │ ├── reply_ne.png │ │ │ │ │ │ │ ├── reply_nw.png │ │ │ │ │ │ │ ├── reply_se.png │ │ │ │ │ │ │ ├── reply_sw.png │ │ │ │ │ │ │ ├── e_edit_blur.png │ │ │ │ │ │ │ ├── n_edit_blur.png │ │ │ │ │ │ │ ├── ne_edit_blur.png │ │ │ │ │ │ │ ├── nw_edit_blur.png │ │ │ │ │ │ │ ├── s_edit_blur.png │ │ │ │ │ │ │ ├── se_edit_blur.png │ │ │ │ │ │ │ ├── sw_edit_blur.png │ │ │ │ │ │ │ └── w_edit_blur.png │ │ │ │ │ │ │ ├── add_button.png │ │ │ │ │ │ │ ├── collapsed.png │ │ │ │ │ │ │ ├── expand_button.png │ │ │ │ │ │ │ ├── mock │ │ │ │ │ │ │ ├── callout.png │ │ │ │ │ │ │ ├── corners.png │ │ │ │ │ │ │ ├── expanded.png │ │ │ │ │ │ │ ├── unknown.jpg │ │ │ │ │ │ │ ├── xrepeat.png │ │ │ │ │ │ │ ├── yrepeat.png │ │ │ │ │ │ │ ├── add_button.png │ │ │ │ │ │ │ ├── collapsed.png │ │ │ │ │ │ │ ├── plus_button.png │ │ │ │ │ │ │ ├── minus_button.png │ │ │ │ │ │ │ ├── thread_border.png │ │ │ │ │ │ │ ├── thread_collapsed.png │ │ │ │ │ │ │ ├── thread_expanded.png │ │ │ │ │ │ │ ├── arrow_read_collapsed.png │ │ │ │ │ │ │ ├── arrow_read_expanded.png │ │ │ │ │ │ │ ├── arrow_unread_expanded.png │ │ │ │ │ │ │ └── arrow_unread_collapsed.png │ │ │ │ │ │ │ ├── toolbar_empty.png │ │ │ │ │ │ │ ├── collapse_button.png │ │ │ │ │ │ │ ├── continuation_icon.png │ │ │ │ │ │ │ ├── arrow_read_collapsed.png │ │ │ │ │ │ │ ├── arrow_read_expanded.png │ │ │ │ │ │ │ ├── arrow_unread_expanded.png │ │ │ │ │ │ │ ├── arrow_unread_collapsed.png │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ ├── BlipLinkMessages_de.properties │ │ │ │ │ │ │ ├── ParticipantMessages_de.properties │ │ │ │ │ │ │ ├── ReplyBoxMessages_zh_TW.properties │ │ │ │ │ │ │ ├── ParticipantMessages_fr.properties │ │ │ │ │ │ │ ├── ParticipantMessages_sl.properties │ │ │ │ │ │ │ ├── ReplyBoxMessages_en.properties │ │ │ │ │ │ │ ├── ReplyBoxMessages_sl.properties │ │ │ │ │ │ │ ├── ReplyBoxMessages_es.properties │ │ │ │ │ │ │ ├── ReplyBoxMessages_fr.properties │ │ │ │ │ │ │ └── ReplyBoxMessages_de.properties │ │ │ │ │ └── impl │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ │ │ ├── color.png │ │ │ │ │ │ │ │ ├── gadget.png │ │ │ │ │ │ │ │ ├── indent.png │ │ │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ │ │ ├── outdent.png │ │ │ │ │ │ │ │ ├── strike.png │ │ │ │ │ │ │ │ ├── attachment.png │ │ │ │ │ │ │ │ ├── backcolor.png │ │ │ │ │ │ │ │ ├── createLink.png │ │ │ │ │ │ │ │ ├── font_size.png │ │ │ │ │ │ │ │ ├── font_style.png │ │ │ │ │ │ │ │ ├── icon_align.png │ │ │ │ │ │ │ │ ├── removeLink.png │ │ │ │ │ │ │ │ ├── underline.png │ │ │ │ │ │ │ │ ├── icon_heading.png │ │ │ │ │ │ │ │ ├── ordered_list.png │ │ │ │ │ │ │ │ ├── icon_align_left.png │ │ │ │ │ │ │ │ ├── icon_font_size.png │ │ │ │ │ │ │ │ ├── icon_subscript.png │ │ │ │ │ │ │ │ ├── unordered_list.png │ │ │ │ │ │ │ │ ├── icon_align_centre.png │ │ │ │ │ │ │ │ ├── icon_align_right.png │ │ │ │ │ │ │ │ ├── icon_superscript.png │ │ │ │ │ │ │ │ ├── remove_formatting.png │ │ │ │ │ │ │ │ └── icon_align_justify.png │ │ │ │ │ │ ├── gadget │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── GadgetSelectorMessages_de.properties │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ └── LinkerMessages_zh_TW.properties │ │ │ │ │ │ ├── edit │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ ├── ParticipantMessages_en.properties │ │ │ │ │ │ │ ├── ParticipantMessages_es.properties │ │ │ │ │ │ │ ├── ParticipantMessages_fr.properties │ │ │ │ │ │ │ ├── ParticipantMessages_zh_TW.properties │ │ │ │ │ │ │ ├── ParticipantMessages_de.properties │ │ │ │ │ │ │ ├── ParticipantMessages_sl.properties │ │ │ │ │ │ │ ├── ActionMessages_en.properties │ │ │ │ │ │ │ ├── ActionMessages_zh_TW.properties │ │ │ │ │ │ │ ├── ActionMessages_de.properties │ │ │ │ │ │ │ ├── ActionMessages_es.properties │ │ │ │ │ │ │ ├── ActionMessages_sl.properties │ │ │ │ │ │ │ ├── ActionMessages_fr.properties │ │ │ │ │ │ │ └── ParticipantMessages_ru.properties │ │ │ │ │ │ └── menu │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── MenuMessages_zh_TW.properties │ │ │ │ │ │ ├── MenuMessages_sl.properties │ │ │ │ │ │ ├── MenuMessages_de.properties │ │ │ │ │ │ ├── MenuMessages_en.properties │ │ │ │ │ │ ├── MenuMessages_es.properties │ │ │ │ │ │ └── MenuMessages_fr.properties │ │ │ │ └── testing │ │ │ │ │ └── public │ │ │ │ │ └── static │ │ │ │ │ └── images │ │ │ │ │ └── unknown.jpg │ │ │ │ └── media │ │ │ │ └── model │ │ │ │ └── Attachment.gwt.xml │ │ └── com │ │ │ └── google │ │ │ └── gwt │ │ │ └── websockets │ │ │ └── WebSockets.gwt.xml │ │ └── java │ │ └── org │ │ └── waveprotocol │ │ ├── box │ │ ├── webclient │ │ │ └── widget │ │ │ │ └── loading │ │ │ │ └── loading.gif │ │ └── server │ │ │ └── waveserver │ │ │ └── ImportServlet.java │ │ ├── wave │ │ └── client │ │ │ ├── gadget │ │ │ └── renderer │ │ │ │ ├── loading_gadget.gif │ │ │ │ └── loading_gadget_small.gif │ │ │ ├── editor │ │ │ └── harness │ │ │ │ └── public │ │ │ │ └── pics │ │ │ │ └── wave.gif │ │ │ ├── widget │ │ │ └── progress │ │ │ │ ├── progress_mini_bar.gif │ │ │ │ └── progress_mini_groove.gif │ │ │ ├── doodad │ │ │ └── attachment │ │ │ │ └── render │ │ │ │ ├── att_loading.gif │ │ │ │ ├── slow_loading.gif │ │ │ │ └── slow_loading_fast.gif │ │ │ └── wavepanel │ │ │ └── impl │ │ │ └── toolbar │ │ │ └── attachment │ │ │ └── spinner.gif │ │ └── pst │ │ └── templates │ │ ├── util │ │ └── properties │ │ ├── builder │ │ └── properties │ │ ├── api │ │ └── properties │ │ ├── jso │ │ └── properties │ │ ├── pojo │ │ ├── properties │ │ └── clearField.st │ │ ├── gson │ │ ├── properties │ │ └── clearField.st │ │ └── proto │ │ └── properties └── config │ └── jaas.config ├── RETIRED.txt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .reviewboardrc ├── NOTICE ├── DISCLAIMER ├── THANKS └── scripts └── vagrant ├── setup-win.cmd └── application.conf /pst/example/.gitignore: -------------------------------------------------------------------------------- 1 | com 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include "wave", "pst" -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: oraclejdk8 -------------------------------------------------------------------------------- /wave/doc/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/agent.png -------------------------------------------------------------------------------- /RETIRED.txt: -------------------------------------------------------------------------------- 1 | This podling has been retired, please see: http://incubator.apache.org/projects/index.html#wave 2 | -------------------------------------------------------------------------------- /wave/war/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/war/static/logo.png -------------------------------------------------------------------------------- /wave/war/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/war/static/favicon.ico -------------------------------------------------------------------------------- /wave/doc/client/01-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/01-blank.png -------------------------------------------------------------------------------- /wave/doc/frontpage/FedOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/frontpage/FedOne.png -------------------------------------------------------------------------------- /wave/doc/01-server-setting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/01-server-setting.jpg -------------------------------------------------------------------------------- /wave/doc/03-profile-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/03-profile-settings.jpg -------------------------------------------------------------------------------- /wave/doc/client/03-open-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/03-open-wave.png -------------------------------------------------------------------------------- /wave/doc/client/04-some-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/04-some-text.png -------------------------------------------------------------------------------- /wave/doc/client/05-with-bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/05-with-bar1.png -------------------------------------------------------------------------------- /wave/doc/client/05-with-bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/05-with-bar2.png -------------------------------------------------------------------------------- /wave/src/dist/jsongadgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/jsongadgets.json -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /wave/doc/02-database-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/02-database-settings.jpg -------------------------------------------------------------------------------- /wave/doc/04-administer-account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/04-administer-account.jpg -------------------------------------------------------------------------------- /wave/doc/client/02-first-waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/02-first-waves.png -------------------------------------------------------------------------------- /wave/war/static/images/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/war/static/images/unknown.jpg -------------------------------------------------------------------------------- /wave/doc/05-external-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/05-external-components.png -------------------------------------------------------------------------------- /wave/doc/06-security-settings-tls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/06-security-settings-tls.jpg -------------------------------------------------------------------------------- /wave/doc/client/06-without-foo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/06-without-foo1.png -------------------------------------------------------------------------------- /wave/doc/client/06-without-foo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/client/06-without-foo2.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/deb -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/exec -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/font -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/html -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/misc -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/plan -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/rpm -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/tar -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/tgz -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/txt -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/txt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/txt2 -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/www -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/zip -------------------------------------------------------------------------------- /wave/war/static/wiab_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/war/static/wiab_screenshot.jpg -------------------------------------------------------------------------------- /wave/doc/05-external-components-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/05-external-components-02.png -------------------------------------------------------------------------------- /wave/doc/07-lockdown-user-creation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/07-lockdown-user-creation.jpg -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/ascii -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/binary -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/empty -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/image -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/sound -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/vcard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/vcard -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/video -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/contents2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/contents2 -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/default -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/document -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/package -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/text-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/text-html -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/unknown -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/vcalendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/vcalendar -------------------------------------------------------------------------------- /wave/war/static/wiab_screenshot_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/war/static/wiab_screenshot_small.jpg -------------------------------------------------------------------------------- /wave/doc/06-security-settings-tls-custom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/doc/06-security-settings-tls-custom.jpg -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/folder_tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/folder_tar -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/font_bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/font_bitmap -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/font_type1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/font_type1 -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/mime_ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/mime_ascii -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/shellscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/shellscript -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/spreadsheet -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/text_plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/text_plain -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/font-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/font-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/font_truetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/font_truetype -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/gnome-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/gnome-package -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/kpresenter_kpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/kpresenter_kpr -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/stock_calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/stock_calendar -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/stock_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/stock_script -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/text-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/text-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/text-x-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/text-x-script -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/wordprocessing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/wordprocessing -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application_pdf -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application_zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application_zip -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/audio-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/audio-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/image-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/image-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/package_editors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/package_editors -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/template_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/template_source -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/video-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/video-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-drawing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-drawing -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/gnome-fs-executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/gnome-fs-executable -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/package-x-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/package-x-generic -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/stock_addressbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/stock_addressbook -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/stock_certificate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/stock_certificate -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-calendar -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-document -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-address-book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-address-book -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-presentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-presentation -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-spreadsheet -------------------------------------------------------------------------------- /.reviewboardrc: -------------------------------------------------------------------------------- 1 | REVIEWBOARD_URL = "https://reviews.apache.org/" 2 | REPOSITORY = "git://git.apache.org/incubator-wave.git" 3 | BRANCH = "master" 4 | LAND_DEST_BRANCH = "master" 5 | -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-certificate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-certificate -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-x-executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-x-executable -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/package_wordprocessing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/package_wordprocessing -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/text-x-generic-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/text-x-generic-template -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-document-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-document-template -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-drawing-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-drawing-template -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-spreadsheet-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-spreadsheet-template -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/x-office-presentation-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/x-office-presentation-template -------------------------------------------------------------------------------- /wave/src/main/resources/org/apache/wave/box/server/rpc/avatar/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/apache/wave/box/server/rpc/avatar/unknown.jpg -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/box/webclient/widget/loading/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/box/webclient/widget/loading/loading.gif -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.ms-excel.sheet.macroEnabled.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.ms-excel.sheet.macroEnabled.12 -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/search/mock/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/search/mock/unknown.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_e.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_n.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_s.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_w.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/sugg/icon_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/sugg/icon_undo.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.ms-word.document.macroEnabled.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.ms-word.document.macroEnabled.12 -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/gadget/renderer/loading_gadget.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/gadget/renderer/loading_gadget.gif -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_ne.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_nw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_se.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/widget/frame/panel_sw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_more.png -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/editor/harness/public/pics/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/editor/harness/public/pics/wave.gif -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/sugg/icon_undo_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/sugg/icon_undo_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add-big.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/addDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/addDown.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/button_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/button_fill.png -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/widget/progress/progress_mini_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/widget/progress/progress_mini_bar.gif -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/box/webclient/search/images/toolbar_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/box/webclient/search/images/toolbar_empty.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/error.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/broken_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/broken_gadget.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_mid_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add_small.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/blue-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/blue-plus.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/folder-open.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/lightbulb.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_left.png -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/att_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/att_loading.gif -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/slow_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/slow_loading.gif -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/gadget/renderer/loading_gadget_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/gadget/renderer/loading_gadget_small.gif -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/widget/progress/progress_mini_groove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/widget/progress/progress_mini_groove.gif -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/Snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/Snow.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/hills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/hills.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_left_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/gadget/renderer/meta_right_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/callout.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add-big-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add-big-down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/folder-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/folder-closed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/popup-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/popup-button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_middle.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_right.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.ms-powerpoint.presentation.macroEnabled.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.ms-powerpoint.presentation.macroEnabled.12 -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_mid.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_more.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-c-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-c-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-e-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-e-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-n-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-n-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-ne-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-ne-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-nw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-nw-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-s-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-s-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-se-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-se-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-sw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-sw-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-w-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/thumb-w-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/hills-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/hills-sm.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/yosemite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/yosemite.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/add_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/add_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add_small_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/add_small_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close-down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/spelly-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/spelly-dropdown.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_left_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_e.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_n.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ne.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_nw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_s.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_se.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_sw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_w.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/toolbar_more_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/toolbar_more_button.png -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/slow_loading_fast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/doodad/attachment/render/slow_loading_fast.gif -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/wave/client/wavepanel/impl/toolbar/attachment/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/java/org/waveprotocol/wave/client/wavepanel/impl/toolbar/attachment/spinner.gif -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_expand.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/testing/public/static/images/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/testing/public/static/images/unknown.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/expand_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/expand_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_e.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_n.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_s.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_w.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_edit.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/callout.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/corners.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/unknown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/unknown.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/xrepeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/xrepeat.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/yrepeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/yrepeat.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/toolbar_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/toolbar_empty.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_next.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_prev.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-close-hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore-down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/remove_tag_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/remove_tag_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_feed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/add_button_middle.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_middle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_middle_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/button_right_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ene.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/arrow_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/arrow_vertical.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.2-all.zip 6 | -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/doodad/attachment/render/meta_contract.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-c-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-c-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-e-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-e-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-n-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-n-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-ne-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-ne-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-nw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-nw-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-s-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-s-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-se-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-se-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-sw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-sw-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-w-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/images/thumb-w-2.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/yosemite-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/yosemite-sm.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/bold.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/color.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/collapse_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/collapse_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_ne.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_nw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_se.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/reply_sw.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/add_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/add_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/plus_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/plus_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize-down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-maximize-hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize-down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-minimize-hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/panel-restore-hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/split_button_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/split_button_dropdown.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_avatar.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_single.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_middle.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_middle.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/arrow_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/arrow_horizontal.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/button_down_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/button_down_large.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/toolbar_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/toolbar/buttons/toolbar_divider.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/Beautiful+View.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/editor/harness/public/pics/Beautiful+View.jpg -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/gadget.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/indent.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/italic.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/outdent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/outdent.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/strike.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/continuation_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/continuation_icon.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/e_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/n_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/ne_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/nw_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/s_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/se_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/sw_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_edit_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/frame/w_edit_blur.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/minus_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/minus_button.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_border.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_next_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_prev_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/button_digest_prev_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/popup-button-depressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/popup-button-depressed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/remove_tag_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/remove_tag_button_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_feed_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_feed_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_left_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_n_titled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_n_titled.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ne_titled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_ne_titled.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_nw_titled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/popup/desktopchrome/popup_nw_titled.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.presentationml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.presentationml.template -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.spreadsheetml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.spreadsheetml.template -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/attachment.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/backcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/backcolor.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/createLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/createLink.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/font_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/font_size.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/font_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/font_style.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/removeLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/removeLink.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/underline.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_read_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_read_collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_read_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_read_expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_unread_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_unread_expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/thread_expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/alert_close_button_hover.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/split_button_dropdown_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/split_button_dropdown_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_avatar_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_avatar_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_single_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/icon/view_switcher_single_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_left_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_left_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_middle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_middle_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/primary_button_right_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_middle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_middle_down.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_right_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/widget/button/text/system_button_right_down.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.wordprocessingml.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.wordprocessingml.document -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.wordprocessingml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.wordprocessingml.template -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_heading.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/ordered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/ordered_list.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_unread_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/arrow_unread_collapsed.png -------------------------------------------------------------------------------- /wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.presentationml.presentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/dist/thumbnail_patterns/application-vnd.openxmlformats-officedocument.presentationml.presentation -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_left.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_font_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_font_size.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_subscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_subscript.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/unordered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/unordered_list.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_read_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_read_collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_read_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_read_expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_unread_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_unread_expanded.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_centre.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_right.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_superscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_superscript.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/remove_formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/remove_formatting.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_unread_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/view/dom/full/mock/arrow_unread_collapsed.png -------------------------------------------------------------------------------- /wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patterns/incubator-retired-wave/master/wave/src/main/resources/org/waveprotocol/wave/client/wavepanel/impl/toolbar/images/edit/icon_align_justify.png -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Apache Wave 2 | Copyright 2011-2014 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | Portions of this software were developed at Google Inc. and 8 | have been kindly donated to the Apache Software Foundation. 9 | -------------------------------------------------------------------------------- /pst/src/dist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Wave - PST 2 | Copyright 2011-2016 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | Portions of this software were developed at Google Inc. and 8 | have been kindly donated to the Apache Software Foundation. 9 | -------------------------------------------------------------------------------- /pst/example/example.proto: -------------------------------------------------------------------------------- 1 | // Example protobuffer definition in the Public Domain. 2 | 3 | syntax = "proto2"; 4 | 5 | option java_package = "com.example"; 6 | option java_outer_classname = "Example"; 7 | 8 | package example; 9 | 10 | message Person { 11 | required string name = 1; 12 | required int32 id = 2; // Unique ID number for this person. 13 | } 14 | 15 | -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- 1 | Apache Wave is an effort undergoing incubation at The Apache Software 2 | Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required 3 | of all newly accepted projects until a further review indicates that the 4 | infrastructure, communications, and decision making process have stabilized in 5 | a manner consistent with other successful ASF projects. While incubation status 6 | is not necessarily a reflection of the completeness or stability of the code, 7 | it does indicate that the project has yet to be fully endorsed by the ASF. 8 | -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- 1 | For those who are directly included in the releases, attribution has been given 2 | in the LICENSE and NOTICE files included in the source and binary releases 3 | This project makes use of many other people's work, which whilst not 4 | required to be attributed, it is always nice to do so. 5 | 6 | As such, many thanks are given to the following projects which are used by 7 | Apache Wave, and have yet to be acknowledged. 8 | 9 | Apache Ant 10 | Apache Velocity 11 | The EMMA Project 12 | The Antlr Project 13 | The cglib Project 14 | The GWT Project 15 | The OW2 Consortium (ASM) 16 | The Hamcrest Project 17 | The Tango Desktop Project 18 | -------------------------------------------------------------------------------- /wave/src/dist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Wave 2 | Copyright 2011-2014 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | Portions of this software were developed at Google Inc. and 8 | have been kindly donated to the Apache Software Foundation. 9 | 10 | This product includes software developed at 11 | The DOM4J Project (http://dom4j.sourceforge.net). 12 | 13 | This product includes software developed by the 14 | JDOM Project (http://www.jdom.org/). 15 | 16 | This product includes software developed by the Indiana University 17 | Extreme! Lab (http://www.extreme.indiana.edu/). 18 | -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/pst/templates/util/properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | template.name = Util 19 | -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/pst/templates/builder/properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | template.name = Builder 19 | -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/pst/templates/api/properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | template.name = 19 | package.suffix = 20 | -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/pst/templates/jso/properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | template.name = JsoImpl 19 | package.suffix = jso 20 | -------------------------------------------------------------------------------- /wave/src/main/java/org/waveprotocol/pst/templates/pojo/properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | template.name = Impl 19 | package.suffix = impl 20 | -------------------------------------------------------------------------------- /pst/example/example.st: -------------------------------------------------------------------------------- 1 | /* Example Protobuffer Class template in the Public Domain */ 2 | 3 | public interface $m.javaType$ { 4 | 5 | $m.nestedEnums: {e|$enum(e=e)$}$ 6 | $m.nestedMessages: {nested|$interface(m=nested)$}$ 7 | 8 | ///** Does a deep copy from model. */ 9 | void copyFrom($m.javaType$ model); 10 | 11 | /** 12 | * Tests if this model is equal to another object. 13 | * "Equal" is recursively defined as: 14 | *