├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── auranote.db.h2.db ├── bin ├── .gitignore ├── checklocalportrange ├── chromedriverlauncher ├── daemonize └── pskill ├── pom.xml └── src ├── clipper ├── clipper.js ├── icon-128.png ├── icon-16.png ├── icon-48.png ├── manifest.json ├── options.html └── options.js ├── main ├── java │ ├── configuration │ │ └── NoteConverterConfig.java │ └── org │ │ └── auraframework │ │ └── demo │ │ ├── converters │ │ └── StringToNoteConverter.java │ │ └── notes │ │ ├── DataStore.java │ │ ├── Note.java │ │ ├── controllers │ │ ├── NoteEditController.java │ │ ├── NoteViewController.java │ │ └── TestNoteListController.java │ │ └── models │ │ ├── NoteListModel.java │ │ └── TestNoteListModel.java └── webapp │ ├── WEB-INF │ ├── components │ │ └── auranote │ │ │ ├── details │ │ │ ├── details.cmp │ │ │ ├── details.css │ │ │ ├── detailsController.js │ │ │ ├── detailsHelper.js │ │ │ └── detailsRenderer.js │ │ │ ├── inputRichText │ │ │ └── inputRichText.cmp │ │ │ ├── list │ │ │ └── list.cmp │ │ │ ├── listRow │ │ │ ├── listRow.cmp │ │ │ └── listRow.css │ │ │ ├── note │ │ │ ├── note.cmp │ │ │ ├── note.css │ │ │ ├── noteController.js │ │ │ └── noteProvider.js │ │ │ ├── noteAdded │ │ │ └── noteAdded.evt │ │ │ ├── noteCreate │ │ │ ├── noteCreate.app │ │ │ └── noteCreateController.js │ │ │ ├── noteData │ │ │ └── noteData.intf │ │ │ ├── noteEdit │ │ │ ├── noteEdit.cmp │ │ │ ├── noteEdit.css │ │ │ ├── noteEditController.js │ │ │ ├── noteEditRenderer.js │ │ │ └── noteEditTest.js │ │ │ ├── noteList │ │ │ └── noteList.cmp │ │ │ ├── noteListRow │ │ │ ├── noteListRow.cmp │ │ │ ├── noteListRow.css │ │ │ └── noteListRowController.js │ │ │ ├── noteView │ │ │ ├── noteView.cmp │ │ │ └── noteViewController.js │ │ │ ├── notes │ │ │ ├── notes.app │ │ │ ├── notes.css │ │ │ └── notesRenderer.js │ │ │ ├── openNote │ │ │ └── openNote.evt │ │ │ ├── sidebar │ │ │ ├── sidebar.cmp │ │ │ ├── sidebar.css │ │ │ └── sidebarController.js │ │ │ ├── sortChanged │ │ │ └── sortChanged.evt │ │ │ ├── template │ │ │ ├── template.cmp │ │ │ └── template.css │ │ │ └── testNoteList │ │ │ ├── testNoteList.cmp │ │ │ └── testNoteListTest.js │ └── web.xml │ ├── aura │ ├── auralogo.png │ ├── ckeditor │ │ ├── .htaccess │ │ ├── INSTALL.html │ │ ├── LICENSE.html │ │ ├── _samples │ │ │ ├── adobeair │ │ │ │ ├── application.xml │ │ │ │ ├── run.bat │ │ │ │ ├── run.sh │ │ │ │ └── sample.html │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── api_dialog.html │ │ │ ├── api_dialog │ │ │ │ └── my_dialog.js │ │ │ ├── asp │ │ │ │ ├── advanced.asp │ │ │ │ ├── events.asp │ │ │ │ ├── index.html │ │ │ │ ├── replace.asp │ │ │ │ ├── replaceall.asp │ │ │ │ ├── sample_posteddata.asp │ │ │ │ └── standalone.asp │ │ │ ├── assets │ │ │ │ ├── _posteddata.php │ │ │ │ ├── output_for_flash.fla │ │ │ │ ├── output_for_flash.swf │ │ │ │ ├── output_xhtml.css │ │ │ │ ├── parsesample.css │ │ │ │ └── swfobject.js │ │ │ ├── autogrow.html │ │ │ ├── bbcode.html │ │ │ ├── devtools.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey.html │ │ │ ├── fullpage.html │ │ │ ├── index.html │ │ │ ├── jqueryadapter.html │ │ │ ├── output_for_flash.html │ │ │ ├── output_html.html │ │ │ ├── output_xhtml.html │ │ │ ├── php │ │ │ │ ├── advanced.php │ │ │ │ ├── events.php │ │ │ │ ├── index.html │ │ │ │ ├── replace.php │ │ │ │ ├── replaceall.php │ │ │ │ └── standalone.php │ │ │ ├── placeholder.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── sharedspaces.html │ │ │ ├── skins.html │ │ │ ├── stylesheetparser.html │ │ │ ├── tableresize.html │ │ │ ├── ui_color.html │ │ │ └── ui_languages.html │ │ ├── _source │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── core │ │ │ │ ├── _bootstrap.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── ckeditor_base.js │ │ │ │ ├── ckeditor_basic.js │ │ │ │ ├── command.js │ │ │ │ ├── commanddefinition.js │ │ │ │ ├── config.js │ │ │ │ ├── dataprocessor.js │ │ │ │ ├── dom.js │ │ │ │ ├── dom │ │ │ │ │ ├── comment.js │ │ │ │ │ ├── document.js │ │ │ │ │ ├── documentfragment.js │ │ │ │ │ ├── domobject.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── elementpath.js │ │ │ │ │ ├── event.js │ │ │ │ │ ├── node.js │ │ │ │ │ ├── nodelist.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── rangelist.js │ │ │ │ │ ├── text.js │ │ │ │ │ ├── walker.js │ │ │ │ │ └── window.js │ │ │ │ ├── dtd.js │ │ │ │ ├── editor.js │ │ │ │ ├── editor_basic.js │ │ │ │ ├── env.js │ │ │ │ ├── event.js │ │ │ │ ├── eventInfo.js │ │ │ │ ├── focusmanager.js │ │ │ │ ├── htmlparser.js │ │ │ │ ├── htmlparser │ │ │ │ │ ├── basicwriter.js │ │ │ │ │ ├── cdata.js │ │ │ │ │ ├── comment.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── fragment.js │ │ │ │ │ └── text.js │ │ │ │ ├── lang.js │ │ │ │ ├── loader.js │ │ │ │ ├── plugindefinition.js │ │ │ │ ├── plugins.js │ │ │ │ ├── resourcemanager.js │ │ │ │ ├── scriptloader.js │ │ │ │ ├── skins.js │ │ │ │ ├── themes.js │ │ │ │ ├── tools.js │ │ │ │ └── ui.js │ │ │ ├── lang │ │ │ │ ├── _languages.js │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── a11yhelp.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── he.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── about │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── adobeair │ │ │ │ │ └── plugin.js │ │ │ │ ├── ajax │ │ │ │ │ └── plugin.js │ │ │ │ ├── autogrow │ │ │ │ │ └── plugin.js │ │ │ │ ├── basicstyles │ │ │ │ │ └── plugin.js │ │ │ │ ├── bbcode │ │ │ │ │ └── plugin.js │ │ │ │ ├── bidi │ │ │ │ │ └── plugin.js │ │ │ │ ├── blockquote │ │ │ │ │ └── plugin.js │ │ │ │ ├── button │ │ │ │ │ └── plugin.js │ │ │ │ ├── clipboard │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── colorbutton │ │ │ │ │ └── plugin.js │ │ │ │ ├── colordialog │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── colordialog.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── contextmenu │ │ │ │ │ └── plugin.js │ │ │ │ ├── devtools │ │ │ │ │ ├── lang │ │ │ │ │ │ └── en.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogDefinition.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── dialogadvtab │ │ │ │ │ └── plugin.js │ │ │ │ ├── dialogui │ │ │ │ │ └── plugin.js │ │ │ │ ├── div │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── docprops │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── docprops.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── domiterator │ │ │ │ │ └── plugin.js │ │ │ │ ├── editingblock │ │ │ │ │ └── plugin.js │ │ │ │ ├── elementspath │ │ │ │ │ └── plugin.js │ │ │ │ ├── enterkey │ │ │ │ │ └── plugin.js │ │ │ │ ├── entities │ │ │ │ │ └── plugin.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── plugin.js │ │ │ │ ├── filebrowser │ │ │ │ │ └── plugin.js │ │ │ │ ├── find │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── floatpanel │ │ │ │ │ └── plugin.js │ │ │ │ ├── font │ │ │ │ │ └── plugin.js │ │ │ │ ├── format │ │ │ │ │ └── plugin.js │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── horizontalrule │ │ │ │ │ └── plugin.js │ │ │ │ ├── htmldataprocessor │ │ │ │ │ └── plugin.js │ │ │ │ ├── htmlwriter │ │ │ │ │ └── plugin.js │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── iframedialog │ │ │ │ │ └── plugin.js │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── indent │ │ │ │ │ └── plugin.js │ │ │ │ ├── justify │ │ │ │ │ └── plugin.js │ │ │ │ ├── keystrokes │ │ │ │ │ └── plugin.js │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── anchor.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── list │ │ │ │ │ └── plugin.js │ │ │ │ ├── listblock │ │ │ │ │ └── plugin.js │ │ │ │ ├── liststyle │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── maximize │ │ │ │ │ └── plugin.js │ │ │ │ ├── menu │ │ │ │ │ └── plugin.js │ │ │ │ ├── menubutton │ │ │ │ │ └── plugin.js │ │ │ │ ├── newpage │ │ │ │ │ └── plugin.js │ │ │ │ ├── pagebreak │ │ │ │ │ ├── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── panel │ │ │ │ │ └── plugin.js │ │ │ │ ├── panelbutton │ │ │ │ │ └── plugin.js │ │ │ │ ├── pastefromword │ │ │ │ │ ├── filter │ │ │ │ │ │ └── default.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── pastetext │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── pastetext.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── placeholder.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── he.js │ │ │ │ │ ├── placeholder.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── popup │ │ │ │ │ └── plugin.js │ │ │ │ ├── preview │ │ │ │ │ └── plugin.js │ │ │ │ ├── print │ │ │ │ │ └── plugin.js │ │ │ │ ├── removeformat │ │ │ │ │ └── plugin.js │ │ │ │ ├── resize │ │ │ │ │ └── plugin.js │ │ │ │ ├── richcombo │ │ │ │ │ └── plugin.js │ │ │ │ ├── save │ │ │ │ │ └── plugin.js │ │ │ │ ├── scayt │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── plugin.js │ │ │ │ ├── selection │ │ │ │ │ └── plugin.js │ │ │ │ ├── showblocks │ │ │ │ │ ├── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── showborders │ │ │ │ │ └── plugin.js │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ │ └── plugin.js │ │ │ │ ├── sourcearea │ │ │ │ │ └── plugin.js │ │ │ │ ├── specialchar │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ ├── lang │ │ │ │ │ │ └── en.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── styles │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── styles │ │ │ │ │ │ └── default.js │ │ │ │ ├── stylescombo │ │ │ │ │ └── plugin.js │ │ │ │ ├── stylesheetparser │ │ │ │ │ └── plugin.js │ │ │ │ ├── tab │ │ │ │ │ └── plugin.js │ │ │ │ ├── table │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── tableresize │ │ │ │ │ └── plugin.js │ │ │ │ ├── tabletools │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── templates.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── toolbar │ │ │ │ │ └── plugin.js │ │ │ │ ├── uicolor │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── uicolor.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── he.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ ├── uicolor.gif │ │ │ │ │ └── yui │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ │ └── yui.css │ │ │ │ │ │ └── yui.js │ │ │ │ ├── undo │ │ │ │ │ └── plugin.js │ │ │ │ ├── wsc │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ └── wsc.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── plugin.js │ │ │ │ └── xml │ │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ │ ├── kama │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── icons.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ │ ├── mini.gif │ │ │ │ │ │ ├── noimage.png │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ │ └── toolbar_start.gif │ │ │ │ │ ├── mainui.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── richcombo.css │ │ │ │ │ ├── skin.js │ │ │ │ │ ├── templates.css │ │ │ │ │ └── toolbar.css │ │ │ │ ├── office2003 │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── icons.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ │ ├── mini.gif │ │ │ │ │ │ ├── noimage.png │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ └── sprites_ie6.png │ │ │ │ │ ├── mainui.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── richcombo.css │ │ │ │ │ ├── skin.js │ │ │ │ │ ├── templates.css │ │ │ │ │ └── toolbar.css │ │ │ │ └── v2 │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── icons.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ │ ├── mainui.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── richcombo.css │ │ │ │ │ ├── skin.js │ │ │ │ │ ├── templates.css │ │ │ │ │ └── toolbar.css │ │ │ └── themes │ │ │ │ └── default │ │ │ │ └── theme.js │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── ckeditor.js │ │ ├── ckeditor.pack │ │ ├── ckeditor_basic.js │ │ ├── ckeditor_basic_source.js │ │ ├── ckeditor_source.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── images │ │ │ └── spacer.gif │ │ ├── lang │ │ │ ├── _languages.js │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ ├── dialogs │ │ │ │ │ └── a11yhelp.js │ │ │ │ └── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── he.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ └── en.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ └── dialogs │ │ │ │ │ └── image.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ └── anchor.gif │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetext │ │ │ │ └── dialogs │ │ │ │ │ └── pastetext.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── he.js │ │ │ │ ├── placeholder.gif │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ └── specialchar.js │ │ │ │ └── lang │ │ │ │ │ └── en.js │ │ │ ├── styles │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── he.js │ │ │ │ ├── plugin.js │ │ │ │ ├── uicolor.gif │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── wsc │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── wsc.js │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ ├── office2003 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── sprites_ie6.png │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ └── v2 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ └── themes │ │ │ └── default │ │ │ └── theme.js │ ├── codemirror │ │ ├── contrib │ │ │ ├── apex │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ │ └── apexcolors.css │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── parseapex.js │ │ │ │ │ └── tokenizeapex.js │ │ │ ├── csharp │ │ │ │ ├── css │ │ │ │ │ └── csharpcolors.css │ │ │ │ └── js │ │ │ │ │ ├── parsecsharp.js │ │ │ │ │ └── tokenizecsharp.js │ │ │ ├── java │ │ │ │ ├── css │ │ │ │ │ └── javacolors.css │ │ │ │ └── js │ │ │ │ │ ├── parsejava.js │ │ │ │ │ └── tokenizejava.js │ │ │ ├── lua │ │ │ │ ├── css │ │ │ │ │ └── luacolors.css │ │ │ │ └── js │ │ │ │ │ └── parselua.js │ │ │ ├── ometa │ │ │ │ ├── css │ │ │ │ │ └── ometacolors.css │ │ │ │ └── js │ │ │ │ │ ├── parseometa.js │ │ │ │ │ └── tokenizeometa.js │ │ │ ├── php │ │ │ │ ├── css │ │ │ │ │ └── phpcolors.css │ │ │ │ └── js │ │ │ │ │ ├── parsephp.js │ │ │ │ │ ├── parsephphtmlmixed.js │ │ │ │ │ └── tokenizephp.js │ │ │ ├── plsql │ │ │ │ ├── css │ │ │ │ │ └── plsqlcolors.css │ │ │ │ └── js │ │ │ │ │ └── parseplsql.js │ │ │ ├── python │ │ │ │ ├── css │ │ │ │ │ └── pythoncolors.css │ │ │ │ └── js │ │ │ │ │ └── parsepython.js │ │ │ ├── scheme │ │ │ │ ├── css │ │ │ │ │ └── schemecolors.css │ │ │ │ └── js │ │ │ │ │ ├── parsescheme.js │ │ │ │ │ └── tokenizescheme.js │ │ │ ├── sql │ │ │ │ ├── css │ │ │ │ │ └── sqlcolors.css │ │ │ │ └── js │ │ │ │ │ └── parsesql.js │ │ │ └── xquery │ │ │ │ ├── css │ │ │ │ ├── xqcolors-dark.css │ │ │ │ ├── xqcolors.css │ │ │ │ └── xqcolors2.css │ │ │ │ └── js │ │ │ │ ├── parsexquery.js │ │ │ │ └── tokenizexquery.js │ │ ├── css │ │ │ ├── csscolors.css │ │ │ ├── docs.css │ │ │ ├── font.js │ │ │ ├── jscolors.css │ │ │ ├── sparqlcolors.css │ │ │ └── xmlcolors.css │ │ └── js │ │ │ ├── codemirror.js │ │ │ ├── editor.js │ │ │ ├── highlight.js │ │ │ ├── mirrorframe.js │ │ │ ├── parsecss.js │ │ │ ├── parsedummy.js │ │ │ ├── parsehtmlmixed.js │ │ │ ├── parsejavascript.js │ │ │ ├── parsesparql.js │ │ │ ├── parsexml.js │ │ │ ├── select.js │ │ │ ├── stringstream.js │ │ │ ├── tokenize.js │ │ │ ├── tokenizejavascript.js │ │ │ ├── undo.js │ │ │ ├── unittests.js │ │ │ └── util.js │ ├── images │ │ ├── 1x1.gif │ │ └── images │ │ │ ├── 1x1.gif │ │ │ ├── applicationEventOverview.jpg │ │ │ ├── auraj.png │ │ │ ├── bug.png │ │ │ ├── car.png │ │ │ ├── checkbox_checked.gif │ │ │ ├── checkbox_unchecked.gif │ │ │ ├── clear.png │ │ │ ├── clock.jpg │ │ │ ├── componentEventOverview.jpg │ │ │ ├── hula.gif │ │ │ ├── lagomorph.gif │ │ │ ├── smallcheck-checked.png │ │ │ ├── smallcheck.png │ │ │ └── write_blog.png │ ├── resetCSS.css │ └── s.gif │ ├── css │ ├── MyriadPro-Bold.otf │ ├── MyriadPro-Regular.otf │ └── resetCSS.css │ ├── img │ ├── bg.png │ └── location.png │ ├── index.html │ └── index.jsp └── test ├── java ├── configuration │ └── AuraIntegrationTestConfig.java └── org │ └── auraframework │ └── test │ ├── AuraNoteTestUtil.java │ ├── AuraNoteUITestCase.java │ ├── AuraNoteUnitTestCase.java │ ├── JSTests.java │ ├── SeleniumServerLauncher.java │ ├── basic │ ├── CreateNewNoteUITest.java │ ├── DeleteNoteUITest.java │ ├── EditNoteUITest.java │ ├── LocationInNoteUITest.java │ ├── NoteEditControllerUnitTest.java │ ├── SearchNoteUITest.java │ └── SortNoteUITest.java │ └── configuration │ └── JettyTestServletConfig.java └── resources ├── header.txt └── log4j.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/README.md -------------------------------------------------------------------------------- /auranote.db.h2.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/auranote.db.h2.db -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | chromedriver 2 | -------------------------------------------------------------------------------- /bin/checklocalportrange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/bin/checklocalportrange -------------------------------------------------------------------------------- /bin/chromedriverlauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/bin/chromedriverlauncher -------------------------------------------------------------------------------- /bin/daemonize: -------------------------------------------------------------------------------- 1 | $@ <&- 1>/dev/null 2>&1 & 2 | -------------------------------------------------------------------------------- /bin/pskill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/bin/pskill -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/pom.xml -------------------------------------------------------------------------------- /src/clipper/clipper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/clipper.js -------------------------------------------------------------------------------- /src/clipper/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/icon-128.png -------------------------------------------------------------------------------- /src/clipper/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/icon-16.png -------------------------------------------------------------------------------- /src/clipper/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/icon-48.png -------------------------------------------------------------------------------- /src/clipper/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/manifest.json -------------------------------------------------------------------------------- /src/clipper/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/options.html -------------------------------------------------------------------------------- /src/clipper/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/clipper/options.js -------------------------------------------------------------------------------- /src/main/java/configuration/NoteConverterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/java/configuration/NoteConverterConfig.java -------------------------------------------------------------------------------- /src/main/java/org/auraframework/demo/notes/DataStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/java/org/auraframework/demo/notes/DataStore.java -------------------------------------------------------------------------------- /src/main/java/org/auraframework/demo/notes/Note.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/java/org/auraframework/demo/notes/Note.java -------------------------------------------------------------------------------- /src/main/java/org/auraframework/demo/notes/models/NoteListModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/java/org/auraframework/demo/notes/models/NoteListModel.java -------------------------------------------------------------------------------- /src/main/java/org/auraframework/demo/notes/models/TestNoteListModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/java/org/auraframework/demo/notes/models/TestNoteListModel.java -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/details/details.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/details/details.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/details/details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/details/details.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/details/detailsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/details/detailsController.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/details/detailsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/details/detailsHelper.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/details/detailsRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/details/detailsRenderer.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/list/list.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/list/list.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/listRow/listRow.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/listRow/listRow.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/listRow/listRow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/listRow/listRow.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/note/note.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/note/note.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/note/note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/note/note.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/note/noteController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/note/noteController.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/note/noteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/note/noteProvider.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteAdded/noteAdded.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteAdded/noteAdded.evt -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteCreate/noteCreate.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteCreate/noteCreate.app -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteData/noteData.intf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteData/noteData.intf -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEdit.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEdit.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEdit.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEditRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEditRenderer.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEditTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteEdit/noteEditTest.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteList/noteList.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteList/noteList.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteListRow/noteListRow.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteListRow/noteListRow.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteListRow/noteListRow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteListRow/noteListRow.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/noteView/noteView.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/noteView/noteView.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/notes/notes.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/notes/notes.app -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/notes/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/notes/notes.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/notes/notesRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/notes/notesRenderer.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/openNote/openNote.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/openNote/openNote.evt -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/sidebar/sidebar.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/sidebar/sidebar.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/sidebar/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/sidebar/sidebar.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/sidebar/sidebarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/sidebar/sidebarController.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/sortChanged/sortChanged.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/sortChanged/sortChanged.evt -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/template/template.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/template/template.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/template/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/template/template.css -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/components/auranote/testNoteList/testNoteList.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/components/auranote/testNoteList/testNoteList.cmp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/aura/auralogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/auralogo.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/.htaccess -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/INSTALL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/INSTALL.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/LICENSE.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/adobeair/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/adobeair/application.xml -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/adobeair/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/adobeair/run.bat -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/adobeair/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/adobeair/run.sh -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/adobeair/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/adobeair/sample.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/ajax.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/api.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/api_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/api_dialog.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/api_dialog/my_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/api_dialog/my_dialog.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/advanced.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/advanced.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/events.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/events.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/index.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/replace.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/replace.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/replaceall.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/replaceall.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/sample_posteddata.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/sample_posteddata.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/asp/standalone.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/asp/standalone.asp -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/_posteddata.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/output_for_flash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/output_for_flash.fla -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/output_for_flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/output_for_flash.swf -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/output_xhtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/output_xhtml.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/parsesample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/parsesample.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/assets/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/assets/swfobject.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/autogrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/autogrow.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/bbcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/bbcode.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/devtools.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/divreplace.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/enterkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/enterkey.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/fullpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/fullpage.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/index.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/jqueryadapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/jqueryadapter.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/output_for_flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/output_for_flash.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/output_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/output_html.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/output_xhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/output_xhtml.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/advanced.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/events.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/index.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/replace.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/replaceall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/replaceall.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/php/standalone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/php/standalone.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/placeholder.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/readonly.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/replacebyclass.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/replacebycode.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/sample.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/sample.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/sample_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/sample_posteddata.php -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/sharedspaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/sharedspaces.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/skins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/skins.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/stylesheetparser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/stylesheetparser.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/tableresize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/tableresize.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/ui_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/ui_color.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_samples/ui_languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_samples/ui_languages.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/adapters/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/_bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/ckeditor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/ckeditor_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/ckeditor_base.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/ckeditor_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/ckeditor_basic.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/command.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/commanddefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/commanddefinition.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/config.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dataprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dataprocessor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/comment.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/document.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/documentfragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/documentfragment.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/domobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/domobject.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/element.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/elementpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/elementpath.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/event.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/node.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/nodelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/nodelist.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/range.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/rangelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/rangelist.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/text.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/walker.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dom/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dom/window.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/dtd.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/editor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/editor_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/editor_basic.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/env.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/event.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/eventInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/eventInfo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/focusmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/focusmanager.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/basicwriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/basicwriter.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/cdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/cdata.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/comment.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/element.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/filter.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/fragment.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/htmlparser/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/htmlparser/text.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/lang.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/loader.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/plugindefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/plugindefinition.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/plugins.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/resourcemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/resourcemanager.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/scriptloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/scriptloader.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/skins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/skins.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/themes.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/tools.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/core/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/core/ui.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/_languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/_languages.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/_translationstatus.txt -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/af.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ar.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/bg.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/bn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/bs.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/cs.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/cy.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/da.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/de.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/el.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/en-au.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/en-ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/en-gb.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/eo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/es.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/et.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/eu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/fa.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/fi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/fo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/fr-ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/fr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/gl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/gu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/hi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/hr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/hu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/is.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/it.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ja.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ka.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/km.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ko.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/lt.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/lv.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/mn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ms.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/nb.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/nl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/no.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/pl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/pt-br.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/pt.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ro.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/ru.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/sk.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/sl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/sr-latn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/sr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/sv.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/th.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/tr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/uk.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/vi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/lang/zh.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/a11yhelp/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/about/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/about/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/adobeair/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/adobeair/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/ajax/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/ajax/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/autogrow/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/autogrow/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/basicstyles/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/basicstyles/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/bbcode/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/bbcode/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/bidi/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/bidi/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/blockquote/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/blockquote/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/button/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/button/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/clipboard/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/clipboard/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/colorbutton/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/colorbutton/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/colordialog/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/colordialog/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/contextmenu/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/contextmenu/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/devtools/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/devtools/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/devtools/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/dialog/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/dialog/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/dialogadvtab/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/dialogadvtab/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/dialogui/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/dialogui/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/div/dialogs/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/div/dialogs/div.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/div/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/div/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/docprops/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/domiterator/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/domiterator/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/editingblock/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/editingblock/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/elementspath/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/elementspath/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/enterkey/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/enterkey/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/entities/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/entities/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/fakeobjects/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/fakeobjects/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/filebrowser/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/filebrowser/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/find/dialogs/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/find/dialogs/find.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/find/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/find/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/flash/dialogs/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/flash/dialogs/flash.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/flash/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/flash/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/floatpanel/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/floatpanel/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/font/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/font/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/format/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/format/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/button.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/checkbox.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/form.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/radio.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/select.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/textarea.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/dialogs/textfield.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/forms/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/forms/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/horizontalrule/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/horizontalrule/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/htmldataprocessor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/htmldataprocessor/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/htmlwriter/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/htmlwriter/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/iframe/dialogs/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/iframe/dialogs/iframe.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/iframe/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/iframe/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/iframedialog/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/iframedialog/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/image/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/image/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/indent/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/indent/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/justify/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/justify/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/keystrokes/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/keystrokes/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/link/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/link/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/list/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/list/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/listblock/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/listblock/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/liststyle/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/liststyle/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/maximize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/maximize/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/menu/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/menu/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/menubutton/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/menubutton/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/newpage/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/newpage/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/pagebreak/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/pagebreak/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/panel/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/panel/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/panelbutton/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/panelbutton/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/pastefromword/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/pastefromword/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/pastetext/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/pastetext/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/placeholder/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/placeholder/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/placeholder/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/placeholder/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/popup/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/popup/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/preview/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/preview/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/print/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/print/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/removeformat/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/removeformat/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/resize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/resize/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/richcombo/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/richcombo/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/save/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/save/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/scayt/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/scayt/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/selection/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/selection/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/showblocks/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/showblocks/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/showborders/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/showborders/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/dialogs/smiley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/dialogs/smiley.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/smiley/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/smiley/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/sourcearea/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/sourcearea/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/specialchar/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/specialchar/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/specialchar/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/specialchar/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/styles/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/styles/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/styles/styles/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/styles/styles/default.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/stylescombo/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/stylescombo/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/stylesheetparser/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/stylesheetparser/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/tab/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/tab/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/table/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/table/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/tableresize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/tableresize/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/tabletools/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/tabletools/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/templates/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/templates/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/toolbar/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/toolbar/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/yui/assets/yui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/yui/assets/yui.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/uicolor/yui/yui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/uicolor/yui/yui.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/undo/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/undo/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/wsc/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/wsc/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/wysiwygarea/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/wysiwygarea/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/plugins/xml/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/plugins/xml/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/elementspath.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/elementspath.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/icons.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/mainui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/mainui.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/menu.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/panel.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/presets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/presets.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/reset.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/richcombo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/richcombo.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/kama/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/kama/toolbar.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/elementspath.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/elementspath.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/icons.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/mainui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/mainui.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/menu.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/panel.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/presets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/presets.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/reset.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/richcombo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/richcombo.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/office2003/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/office2003/toolbar.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/elementspath.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/elementspath.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/icons.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/mainui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/mainui.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/menu.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/panel.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/presets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/presets.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/reset.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/richcombo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/richcombo.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/skins/v2/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/skins/v2/toolbar.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/_source/themes/default/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/_source/themes/default/theme.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/ckeditor.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/ckeditor.pack -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/ckeditor_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/ckeditor_basic.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/ckeditor_basic_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/ckeditor_basic_source.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/ckeditor_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/ckeditor_source.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/config.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/contents.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/_languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/_languages.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/_translationstatus.txt -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/af.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/da.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/de.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/el.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/es.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/et.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/is.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/it.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/km.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/no.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/th.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/a11yhelp/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/a11yhelp/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/a11yhelp/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/a11yhelp/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/adobeair/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/adobeair/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/ajax/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/ajax/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/autogrow/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/autogrow/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/bbcode/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/bbcode/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/colordialog/dialogs/colordialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/colordialog/dialogs/colordialog.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/devtools/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/devtools/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/devtools/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/div/dialogs/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/div/dialogs/div.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/docprops/dialogs/docprops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/docprops/dialogs/docprops.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/docprops/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/find/dialogs/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/find/dialogs/find.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/flash/dialogs/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/flash/dialogs/flash.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/button.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/checkbox.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/form.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/hiddenfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/hiddenfield.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/radio.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/select.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/textarea.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/dialogs/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/dialogs/textfield.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/iframe/dialogs/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/iframe/dialogs/iframe.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/iframedialog/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/iframedialog/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/liststyle/dialogs/liststyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/liststyle/dialogs/liststyle.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/pastefromword/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/pastefromword/filter/default.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/pastetext/dialogs/pastetext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/pastetext/dialogs/pastetext.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/placeholder/dialogs/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/placeholder/dialogs/placeholder.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/placeholder/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/placeholder/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/placeholder/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/placeholder/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/dialogs/smiley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/dialogs/smiley.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/specialchar/dialogs/specialchar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/specialchar/dialogs/specialchar.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/specialchar/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/specialchar/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/styles/styles/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/styles/styles/default.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/stylesheetparser/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/stylesheetparser/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/tableresize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/tableresize/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/tabletools/dialogs/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/tabletools/dialogs/tableCell.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/templates/dialogs/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/templates/dialogs/templates.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/templates/templates/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/templates/templates/default.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/dialogs/uicolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/dialogs/uicolor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/lang/he.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/yui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/assets/yui.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/uicolor/yui/yui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/uicolor/yui/yui.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/tmpFrameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/tmpFrameset.html -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/plugins/xml/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/plugins/xml/plugin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/kama/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/kama/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/office2003/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/office2003/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/dialog.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/editor.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/icons.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/skin.js -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/skins/v2/templates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/skins/v2/templates.css -------------------------------------------------------------------------------- /src/main/webapp/aura/ckeditor/themes/default/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/ckeditor/themes/default/theme.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/apex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/apex/LICENSE -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/apex/css/apexcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/apex/css/apexcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/apex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/apex/index.html -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/apex/js/parseapex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/apex/js/parseapex.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/apex/js/tokenizeapex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/apex/js/tokenizeapex.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/csharp/css/csharpcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/csharp/css/csharpcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/csharp/js/parsecsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/csharp/js/parsecsharp.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/csharp/js/tokenizecsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/csharp/js/tokenizecsharp.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/java/css/javacolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/java/css/javacolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/java/js/parsejava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/java/js/parsejava.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/java/js/tokenizejava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/java/js/tokenizejava.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/lua/css/luacolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/lua/css/luacolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/lua/js/parselua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/lua/js/parselua.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/ometa/css/ometacolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/ometa/css/ometacolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/ometa/js/parseometa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/ometa/js/parseometa.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/ometa/js/tokenizeometa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/ometa/js/tokenizeometa.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/php/css/phpcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/php/css/phpcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/php/js/parsephp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/php/js/parsephp.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/php/js/parsephphtmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/php/js/parsephphtmlmixed.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/php/js/tokenizephp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/php/js/tokenizephp.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/plsql/css/plsqlcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/plsql/css/plsqlcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/plsql/js/parseplsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/plsql/js/parseplsql.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/python/css/pythoncolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/python/css/pythoncolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/python/js/parsepython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/python/js/parsepython.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/scheme/css/schemecolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/scheme/css/schemecolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/scheme/js/parsescheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/scheme/js/parsescheme.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/scheme/js/tokenizescheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/scheme/js/tokenizescheme.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/sql/css/sqlcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/sql/css/sqlcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/sql/js/parsesql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/sql/js/parsesql.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors-dark.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/xquery/css/xqcolors2.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/xquery/js/parsexquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/xquery/js/parsexquery.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/contrib/xquery/js/tokenizexquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/contrib/xquery/js/tokenizexquery.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/csscolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/csscolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/docs.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/font.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/jscolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/jscolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/sparqlcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/sparqlcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/css/xmlcolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/css/xmlcolors.css -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/codemirror.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/editor.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/highlight.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/mirrorframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/mirrorframe.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsecss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsecss.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsedummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsedummy.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsehtmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsehtmlmixed.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsejavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsejavascript.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsesparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsesparql.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/parsexml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/parsexml.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/select.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/stringstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/stringstream.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/tokenize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/tokenize.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/tokenizejavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/tokenizejavascript.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/undo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/undo.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/unittests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/unittests.js -------------------------------------------------------------------------------- /src/main/webapp/aura/codemirror/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/codemirror/js/util.js -------------------------------------------------------------------------------- /src/main/webapp/aura/images/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/1x1.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/1x1.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/applicationEventOverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/applicationEventOverview.jpg -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/auraj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/auraj.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/bug.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/car.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/checkbox_checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/checkbox_checked.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/checkbox_unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/checkbox_unchecked.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/clear.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/clock.jpg -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/componentEventOverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/componentEventOverview.jpg -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/hula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/hula.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/lagomorph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/lagomorph.gif -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/smallcheck-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/smallcheck-checked.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/smallcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/smallcheck.png -------------------------------------------------------------------------------- /src/main/webapp/aura/images/images/write_blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/images/images/write_blog.png -------------------------------------------------------------------------------- /src/main/webapp/aura/resetCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/resetCSS.css -------------------------------------------------------------------------------- /src/main/webapp/aura/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/aura/s.gif -------------------------------------------------------------------------------- /src/main/webapp/css/MyriadPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/css/MyriadPro-Bold.otf -------------------------------------------------------------------------------- /src/main/webapp/css/MyriadPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/css/MyriadPro-Regular.otf -------------------------------------------------------------------------------- /src/main/webapp/css/resetCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/css/resetCSS.css -------------------------------------------------------------------------------- /src/main/webapp/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/img/bg.png -------------------------------------------------------------------------------- /src/main/webapp/img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/img/location.png -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/test/java/configuration/AuraIntegrationTestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/configuration/AuraIntegrationTestConfig.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/AuraNoteTestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/AuraNoteTestUtil.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/AuraNoteUITestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/AuraNoteUITestCase.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/AuraNoteUnitTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/AuraNoteUnitTestCase.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/JSTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/JSTests.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/SeleniumServerLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/SeleniumServerLauncher.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/CreateNewNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/CreateNewNoteUITest.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/DeleteNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/DeleteNoteUITest.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/EditNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/EditNoteUITest.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/LocationInNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/LocationInNoteUITest.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/SearchNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/SearchNoteUITest.java -------------------------------------------------------------------------------- /src/test/java/org/auraframework/test/basic/SortNoteUITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/java/org/auraframework/test/basic/SortNoteUITest.java -------------------------------------------------------------------------------- /src/test/resources/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/resources/header.txt -------------------------------------------------------------------------------- /src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/aura-note/HEAD/src/test/resources/log4j.properties --------------------------------------------------------------------------------