├── test_prc.php ├── ckeditor.rar ├── ckeditor ├── plugins │ ├── icons.png │ ├── icons_hidpi.png │ ├── link │ │ ├── images │ │ │ ├── anchor.png │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ └── dialogs │ │ │ └── anchor.js │ ├── about │ │ └── dialogs │ │ │ ├── logo_ckeditor.png │ │ │ ├── hidpi │ │ │ └── logo_ckeditor.png │ │ │ └── about.js │ ├── dialog │ │ └── dialogDefinition.js │ └── clipboard │ │ └── dialogs │ │ └── paste.js ├── samples1 │ ├── img │ │ ├── logo.png │ │ ├── github-top.png │ │ ├── header-bg.png │ │ ├── navigation-tip.png │ │ └── header-separator.png │ ├── old │ │ ├── assets │ │ │ ├── sample.jpg │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── uilanguages │ │ │ │ └── languages.js │ │ │ ├── posteddata.php │ │ │ └── outputxhtml │ │ │ │ └── outputxhtml.css │ │ ├── sample_posteddata.php │ │ ├── dialog │ │ │ └── assets │ │ │ │ └── my_dialog.js │ │ ├── sample.js │ │ ├── appendto.html │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── ajax.html │ │ ├── readonly.html │ │ ├── enterkey │ │ │ └── enterkey.html │ │ ├── uilanguages.html │ │ ├── divreplace.html │ │ ├── inlinetextarea.html │ │ └── index.html │ ├── toolbarconfigurator │ │ ├── font │ │ │ ├── fontello.eot │ │ │ ├── fontello.ttf │ │ │ ├── fontello.woff │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ └── fontello.svg │ │ ├── lib │ │ │ └── codemirror │ │ │ │ ├── show-hint.css │ │ │ │ ├── neo.css │ │ │ │ └── LICENSE │ │ ├── css │ │ │ └── fontello.css │ │ └── js │ │ │ ├── fulltoolbareditor.js │ │ │ └── abstracttoolbarmodifier.js │ └── js │ │ ├── sample.js │ │ └── sf.js ├── skins │ └── moono-lisa │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── images │ │ ├── lock.png │ │ ├── arrow.png │ │ ├── close.png │ │ ├── lock-open.png │ │ ├── refresh.png │ │ ├── spinner.gif │ │ └── hidpi │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ │ └── readme.md ├── config.js ├── README.md ├── adapters │ └── jquery.js ├── build-config.js ├── contents.css ├── lang │ ├── zh-cn.js │ ├── zh.js │ ├── ko.js │ ├── ja.js │ ├── he.js │ ├── ar.js │ ├── az.js │ ├── hi.js │ ├── af.js │ ├── fa.js │ ├── gu.js │ └── si.js └── styles.js ├── posters ├── 5c326d5b9a2ef.png ├── 5c326d6a496fa.png ├── 5c326db0cf616.png ├── 5c326ddc909b8.jpg ├── 5c326ea9e98be.jpg ├── 5c3271143c1ec.jpg ├── 5c32712d7dd34.jpg ├── 5c32717f2134d.jpg ├── 5c32840933b2d.png ├── 5c3387ccb4783.JPG ├── 5c432398db255.jpeg └── 5c4323ae0a5eb.JPG ├── includes ├── logout.php ├── config.php ├── mobile_sidenav.php ├── topbar.php ├── header.php └── footer.php ├── README.md ├── scripts ├── delete.php ├── searched_prc.php ├── login_prc.php ├── publish_prc.php └── signup_prc.php ├── index.html ├── css ├── framework.css └── loader.css ├── index.bk.txt ├── login.php ├── signup.php ├── test.php └── myevents.php /test_prc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckeditor.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor.rar -------------------------------------------------------------------------------- /ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /posters/5c326d5b9a2ef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c326d5b9a2ef.png -------------------------------------------------------------------------------- /posters/5c326d6a496fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c326d6a496fa.png -------------------------------------------------------------------------------- /posters/5c326db0cf616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c326db0cf616.png -------------------------------------------------------------------------------- /posters/5c326ddc909b8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c326ddc909b8.jpg -------------------------------------------------------------------------------- /posters/5c326ea9e98be.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c326ea9e98be.jpg -------------------------------------------------------------------------------- /posters/5c3271143c1ec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c3271143c1ec.jpg -------------------------------------------------------------------------------- /posters/5c32712d7dd34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c32712d7dd34.jpg -------------------------------------------------------------------------------- /posters/5c32717f2134d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c32717f2134d.jpg -------------------------------------------------------------------------------- /posters/5c32840933b2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c32840933b2d.png -------------------------------------------------------------------------------- /posters/5c3387ccb4783.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c3387ccb4783.JPG -------------------------------------------------------------------------------- /posters/5c432398db255.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c432398db255.jpeg -------------------------------------------------------------------------------- /posters/5c4323ae0a5eb.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/posters/5c4323ae0a5eb.JPG -------------------------------------------------------------------------------- /ckeditor/samples1/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/img/logo.png -------------------------------------------------------------------------------- /includes/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /ckeditor/samples1/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/img/github-top.png -------------------------------------------------------------------------------- /ckeditor/samples1/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/img/header-bg.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /ckeditor/samples1/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/img/navigation-tip.png -------------------------------------------------------------------------------- /ckeditor/samples1/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/old/assets/sample.jpg -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wennn 2 | Web Application that brings all the events details happening in College at one place for easier access of info. 3 | -------------------------------------------------------------------------------- /ckeditor/samples1/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/img/header-separator.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/samples1/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/Wennn/HEAD/ckeditor/samples1/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /includes/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /scripts/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/searched_prc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/mobile_sidenav.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 13 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |15 | 16 |
Wen ->Getting updates…
21 |*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/lib/codemirror/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /ckeditor/samples1/toolbarconfigurator/lib/codemirror/neo.css: -------------------------------------------------------------------------------- 1 | /* neo theme for codemirror */ 2 | 3 | /* Color scheme */ 4 | 5 | .cm-s-neo.CodeMirror { 6 | background-color:#ffffff; 7 | color:#2e383c; 8 | line-height:1.4375; 9 | } 10 | .cm-s-neo .cm-comment {color:#75787b} 11 | .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3} 12 | .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a} 13 | .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328} 14 | .cm-s-neo .cm-string {color:#b35e14} 15 | .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65} 16 | 17 | 18 | /* Editor styling */ 19 | 20 | .cm-s-neo pre { 21 | padding:0; 22 | } 23 | 24 | .cm-s-neo .CodeMirror-gutters { 25 | border:none; 26 | border-right:10px solid transparent; 27 | background-color:transparent; 28 | } 29 | 30 | .cm-s-neo .CodeMirror-linenumber { 31 | padding:0; 32 | color:#e0e2e5; 33 | } 34 | 35 | .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; } 36 | .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; } 37 | -------------------------------------------------------------------------------- /includes/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ckeditor/samples1/old/dialog/assets/my_dialog.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.dialog.add( 'myDialog', function() { 7 | return { 8 | title: 'My Dialog', 9 | minWidth: 400, 10 | minHeight: 200, 11 | contents: [ 12 | { 13 | id: 'tab1', 14 | label: 'First Tab', 15 | title: 'First Tab', 16 | elements: [ 17 | { 18 | id: 'input1', 19 | type: 'text', 20 | label: 'Text Field' 21 | }, 22 | { 23 | id: 'select1', 24 | type: 'select', 25 | label: 'Select Field', 26 | items: [ 27 | [ 'option1', 'value1' ], 28 | [ 'option2', 'value2' ] 29 | ] 30 | } 31 | ] 32 | }, 33 | { 34 | id: 'tab2', 35 | label: 'Second Tab', 36 | title: 'Second Tab', 37 | elements: [ 38 | { 39 | id: 'button1', 40 | type: 'button', 41 | label: 'Button Field' 42 | } 43 | ] 44 | } 45 | ] 46 | }; 47 | } ); 48 | 49 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |