├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Read.txt ├── chat-app.py ├── clg.json ├── details.json ├── forms.py ├── requirements.txt ├── server.py ├── static ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── SECURITY.md │ ├── adapters │ │ └── jquery.js │ ├── bender-runner.config.json │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.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 │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.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 │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ ├── dialogDefinition.js │ │ │ └── styles │ │ │ │ └── dialog.css │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pastefromgdocs │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastefromlibreoffice │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastetools │ │ │ └── filter │ │ │ │ ├── common.js │ │ │ │ └── image.js │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableselection │ │ │ └── styles │ │ │ │ └── tableselection.css │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── widget │ │ │ └── images │ │ │ └── handle.png │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ ├── skins │ │ └── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ ├── styles.js │ └── vendor │ │ └── promise.js ├── css │ ├── base.css │ ├── chat.css │ ├── contact.css │ ├── footer.css │ ├── index.css │ ├── login.css │ ├── register.css │ ├── results.css │ ├── search.css │ ├── university.css │ ├── update.css │ └── user.css ├── image │ ├── adiuni.jpg │ ├── au.png │ ├── bg.png │ ├── bg2.png │ ├── daiict.png │ ├── mari-rail.jpg │ ├── nirma.png │ └── tree-plantation.jpg └── js │ └── index.js └── templates ├── Base.html ├── Chat.html ├── Contact.html ├── Director.html ├── Footer.html ├── Login.html ├── NavBar.html ├── Password.html ├── Register.html ├── Result.html ├── Search.html ├── University.html ├── Update.html ├── User.html └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/README.md -------------------------------------------------------------------------------- /Read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/Read.txt -------------------------------------------------------------------------------- /chat-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/chat-app.py -------------------------------------------------------------------------------- /clg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/clg.json -------------------------------------------------------------------------------- /details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/details.json -------------------------------------------------------------------------------- /forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/forms.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/server.py -------------------------------------------------------------------------------- /static/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /static/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /static/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/README.md -------------------------------------------------------------------------------- /static/ckeditor/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/SECURITY.md -------------------------------------------------------------------------------- /static/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /static/ckeditor/bender-runner.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/bender-runner.config.json -------------------------------------------------------------------------------- /static/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/build-config.js -------------------------------------------------------------------------------- /static/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /static/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/config.js -------------------------------------------------------------------------------- /static/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/contents.css -------------------------------------------------------------------------------- /static/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/af.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /static/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/az.js -------------------------------------------------------------------------------- /static/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /static/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /static/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /static/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /static/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /static/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/da.js -------------------------------------------------------------------------------- /static/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /static/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/de.js -------------------------------------------------------------------------------- /static/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/el.js -------------------------------------------------------------------------------- /static/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /static/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /static/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /static/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/en.js -------------------------------------------------------------------------------- /static/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /static/ckeditor/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/es-mx.js -------------------------------------------------------------------------------- /static/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/es.js -------------------------------------------------------------------------------- /static/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/et.js -------------------------------------------------------------------------------- /static/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /static/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /static/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /static/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /static/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /static/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /static/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /static/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /static/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/he.js -------------------------------------------------------------------------------- /static/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /static/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /static/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /static/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/id.js -------------------------------------------------------------------------------- /static/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/is.js -------------------------------------------------------------------------------- /static/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/it.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /static/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/km.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /static/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /static/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /static/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /static/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /static/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /static/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /static/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/no.js -------------------------------------------------------------------------------- /static/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /static/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /static/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /static/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /static/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/si.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /static/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /static/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/th.js -------------------------------------------------------------------------------- /static/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /static/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /static/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /static/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /static/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /static/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /static/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/af.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/az.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/en-au.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/es-mx.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/dialog/styles/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/dialog/styles/dialog.css -------------------------------------------------------------------------------- /static/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/pastefromgdocs/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/pastefromgdocs/filter/default.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/pastefromlibreoffice/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/pastefromlibreoffice/filter/default.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/pastefromword/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/pastefromword/filter/default.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/pastetools/filter/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/pastetools/filter/common.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/pastetools/filter/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/pastetools/filter/image.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/CHANGELOG.md -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/dialogs/dialog.css -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /static/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/af.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ar.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/az.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/bg.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ca.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/cs.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/cy.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/da.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/de.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/el.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/en-au.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/en.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/eo.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/es.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/et.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/eu.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/fa.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/fi.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/fr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/gl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/he.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/hr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/hu.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/id.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/it.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ja.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/km.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ko.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ku.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/lt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/lv.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/nb.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/nl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/no.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/oc.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/pl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/pt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ro.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ru.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/si.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sk.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sl.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sq.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sr-latn.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/sv.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/th.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/tr.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/tt.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/ug.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/uk.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/vi.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/lang/zh.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/specialchar/dialogs/specialchar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/specialchar/dialogs/specialchar.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/tableselection/styles/tableselection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/tableselection/styles/tableselection.css -------------------------------------------------------------------------------- /static/ckeditor/plugins/tabletools/dialogs/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/tabletools/dialogs/tableCell.js -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /static/ckeditor/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/css/samples.css -------------------------------------------------------------------------------- /static/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /static/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /static/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /static/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /static/ckeditor/samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/logo.svg -------------------------------------------------------------------------------- /static/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /static/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/index.html -------------------------------------------------------------------------------- /static/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/js/sample.js -------------------------------------------------------------------------------- /static/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /static/ckeditor/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/ajax.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/api.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/appendto.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /static/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css -------------------------------------------------------------------------------- /static/ckeditor/samples/old/assets/posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/assets/posteddata.php -------------------------------------------------------------------------------- /static/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /static/ckeditor/samples/old/assets/uilanguages/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/assets/uilanguages/languages.js -------------------------------------------------------------------------------- /static/ckeditor/samples/old/datafiltering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/datafiltering.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/dialog/assets/my_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/dialog/assets/my_dialog.js -------------------------------------------------------------------------------- /static/ckeditor/samples/old/dialog/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/dialog/dialog.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/divreplace.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/enterkey/enterkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/enterkey/enterkey.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/htmlwriter/outputhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/htmlwriter/outputhtml.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/index.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/inlineall.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/inlinebycode.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/inlinetextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/inlinetextarea.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/jquery.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/magicline/magicline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/magicline/magicline.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/readonly.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/replacebyclass.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/replacebycode.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/sample.css -------------------------------------------------------------------------------- /static/ckeditor/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/sample.js -------------------------------------------------------------------------------- /static/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/sample_posteddata.php -------------------------------------------------------------------------------- /static/ckeditor/samples/old/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/tabindex.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/toolbar/toolbar.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/uicolor.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/uilanguages.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/wysiwygarea/fullpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/wysiwygarea/fullpage.html -------------------------------------------------------------------------------- /static/ckeditor/samples/old/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/old/xhtmlstyle.html -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/css/fontello.css -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/config.json -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/fontello.svg -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/index.html -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js -------------------------------------------------------------------------------- /static/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/dialog.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/dialog_ie.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/dialog_ie8.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/dialog_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/dialog_iequirks.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/editor.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/editor_gecko.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/editor_ie.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/editor_ie8.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/editor_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/editor_iequirks.css -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/skins/moono-lisa/readme.md -------------------------------------------------------------------------------- /static/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/styles.js -------------------------------------------------------------------------------- /static/ckeditor/vendor/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/ckeditor/vendor/promise.js -------------------------------------------------------------------------------- /static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/base.css -------------------------------------------------------------------------------- /static/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/chat.css -------------------------------------------------------------------------------- /static/css/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/contact.css -------------------------------------------------------------------------------- /static/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/footer.css -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/login.css -------------------------------------------------------------------------------- /static/css/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/register.css -------------------------------------------------------------------------------- /static/css/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/results.css -------------------------------------------------------------------------------- /static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/search.css -------------------------------------------------------------------------------- /static/css/university.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/university.css -------------------------------------------------------------------------------- /static/css/update.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/update.css -------------------------------------------------------------------------------- /static/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/css/user.css -------------------------------------------------------------------------------- /static/image/adiuni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/adiuni.jpg -------------------------------------------------------------------------------- /static/image/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/au.png -------------------------------------------------------------------------------- /static/image/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/bg.png -------------------------------------------------------------------------------- /static/image/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/bg2.png -------------------------------------------------------------------------------- /static/image/daiict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/daiict.png -------------------------------------------------------------------------------- /static/image/mari-rail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/mari-rail.jpg -------------------------------------------------------------------------------- /static/image/nirma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/nirma.png -------------------------------------------------------------------------------- /static/image/tree-plantation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/static/image/tree-plantation.jpg -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Base.html -------------------------------------------------------------------------------- /templates/Chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Chat.html -------------------------------------------------------------------------------- /templates/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Contact.html -------------------------------------------------------------------------------- /templates/Director.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Director.html -------------------------------------------------------------------------------- /templates/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Footer.html -------------------------------------------------------------------------------- /templates/Login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Login.html -------------------------------------------------------------------------------- /templates/NavBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/NavBar.html -------------------------------------------------------------------------------- /templates/Password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Password.html -------------------------------------------------------------------------------- /templates/Register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Register.html -------------------------------------------------------------------------------- /templates/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Result.html -------------------------------------------------------------------------------- /templates/Search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Search.html -------------------------------------------------------------------------------- /templates/University.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/University.html -------------------------------------------------------------------------------- /templates/Update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/Update.html -------------------------------------------------------------------------------- /templates/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/User.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dv04/Alumni_Management/HEAD/templates/index.html --------------------------------------------------------------------------------