├── .gitignore ├── README.md ├── gruntFile.js ├── html ├── index.css ├── index.html └── index.js ├── modules ├── linphone │ ├── core.js │ ├── models.js │ ├── models │ │ ├── contacts.js │ │ ├── contacts │ │ │ ├── core.js │ │ │ ├── localstorage.js │ │ │ └── skeleton.js │ │ ├── history.js │ │ └── history │ │ │ ├── core.js │ │ │ ├── localstorage.js │ │ │ └── skeleton.js │ ├── ui.html │ ├── ui.js │ └── ui │ │ ├── core.html │ │ ├── core.js │ │ ├── dialer.html │ │ ├── dialer.js │ │ ├── header.html │ │ ├── header.js │ │ ├── i18n.js │ │ ├── locale.js │ │ ├── mainbar.html │ │ ├── mainbar.js │ │ ├── menu.html │ │ ├── menu.js │ │ ├── popup.html │ │ ├── popup.js │ │ ├── popup │ │ ├── error.html │ │ ├── error.js │ │ ├── incall.html │ │ ├── incall.js │ │ ├── outcall.html │ │ ├── outcall.js │ │ ├── video.html │ │ └── video.js │ │ ├── utils.js │ │ ├── video.html │ │ ├── video.js │ │ ├── view.html │ │ ├── view.js │ │ └── view │ │ ├── about.html │ │ ├── about.js │ │ ├── call.html │ │ ├── call.js │ │ ├── chat.html │ │ ├── chat.js │ │ ├── conference.html │ │ ├── conference.js │ │ ├── contact.html │ │ ├── contact.js │ │ ├── contacts.html │ │ ├── contacts.js │ │ ├── error.html │ │ ├── error.js │ │ ├── help.html │ │ ├── help.js │ │ ├── history.html │ │ ├── history.js │ │ ├── install.html │ │ ├── install.js │ │ ├── login.html │ │ ├── login.js │ │ ├── main.html │ │ ├── main.js │ │ ├── plugin.html │ │ ├── plugin.js │ │ ├── settings.html │ │ ├── settings.js │ │ └── settings │ │ ├── media.html │ │ └── media.js └── plugin │ └── linphone.js ├── package.json ├── server └── server.js ├── statics ├── conf │ ├── advanced.xml │ └── simple.xml ├── hb ├── js │ ├── analytics.js │ ├── handlebars.js │ ├── handlebars.runtime.js │ ├── i18n.js │ ├── jquery-1.10.1.js │ ├── jquery-ui-1.10.3.js │ ├── jquery.client.js │ ├── jquery.geturlvars.js │ ├── jquery.mousewheel.js │ ├── jquery.watermark.js │ ├── jsonsql-0.1.js │ ├── persistent.js │ ├── sha1.js │ └── vertical.slider.js └── style │ └── reset.css └── themes └── default ├── font ├── aller_rg-webfont.eot ├── aller_rg-webfont.svg ├── aller_rg-webfont.ttf ├── aller_rg-webfont.woff ├── aller_std_bd-webfont.eot ├── aller_std_bd-webfont.svg ├── aller_std_bd-webfont.ttf └── aller_std_bd-webfont.woff ├── img ├── add.png ├── avatar.jpg ├── avatar.png ├── avatar2.jpg ├── backgroundLogo.png ├── call.png ├── callEnd.png ├── callOff.png ├── chat.png ├── check.png ├── close.png ├── collapse.png ├── confAdd.png ├── contactAdd.png ├── contactClose.png ├── delete.png ├── dialer.png ├── error.png ├── errorMessage.png ├── expand.png ├── inProgress.png ├── linphone.ico ├── linphone.png ├── loader.gif ├── loaderCircle.gif ├── logo.png ├── logoBig.png ├── logoIcon.png ├── logout.png ├── modify.png ├── numberMessage.png ├── offline.png ├── pause.png ├── pauseButton.png ├── pauseHover.png ├── play.png ├── playHover.png ├── refresh.png ├── ringtone.png ├── ringtoneMainbar.png ├── send.png ├── sendChat.png ├── signal0b.png ├── signal1b.png ├── signal2b.png ├── signal3b.png ├── signal4b.png ├── speaker.png ├── statusAway.png ├── statusBusy.png ├── statusClose.png ├── statusOffline.png ├── statusOnline.png ├── statusOpen.png ├── upload.png └── video.png ├── linphone.ui.css ├── linphone.ui.dialer.css ├── linphone.ui.header.css ├── linphone.ui.mainbar.css ├── linphone.ui.menu.css ├── linphone.ui.popup.css ├── linphone.ui.popup.error.css ├── linphone.ui.popup.incall.css ├── linphone.ui.popup.outcall.css ├── linphone.ui.popup.video.css ├── linphone.ui.view.about.css ├── linphone.ui.view.call.css ├── linphone.ui.view.chat.css ├── linphone.ui.view.conference.css ├── linphone.ui.view.contact.css ├── linphone.ui.view.contacts.css ├── linphone.ui.view.css ├── linphone.ui.view.error.css ├── linphone.ui.view.help.css ├── linphone.ui.view.history.css ├── linphone.ui.view.install.css ├── linphone.ui.view.login.css ├── linphone.ui.view.main.css ├── linphone.ui.view.plugin.css ├── linphone.ui.view.settings.css └── linphone.ui.view.settings.media.css /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.zip 3 | /dist 4 | /node_modules 5 | /tmp 6 | html/version.js 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/README.md -------------------------------------------------------------------------------- /gruntFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/gruntFile.js -------------------------------------------------------------------------------- /html/index.css: -------------------------------------------------------------------------------- 1 | body, html { 2 | height: 100%; 3 | font-size: 62.5%; 4 | } -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/html/index.html -------------------------------------------------------------------------------- /html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/html/index.js -------------------------------------------------------------------------------- /modules/linphone/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/core.js -------------------------------------------------------------------------------- /modules/linphone/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models.js -------------------------------------------------------------------------------- /modules/linphone/models/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/contacts.js -------------------------------------------------------------------------------- /modules/linphone/models/contacts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/contacts/core.js -------------------------------------------------------------------------------- /modules/linphone/models/contacts/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/contacts/localstorage.js -------------------------------------------------------------------------------- /modules/linphone/models/contacts/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/contacts/skeleton.js -------------------------------------------------------------------------------- /modules/linphone/models/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/history.js -------------------------------------------------------------------------------- /modules/linphone/models/history/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/history/core.js -------------------------------------------------------------------------------- /modules/linphone/models/history/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/history/localstorage.js -------------------------------------------------------------------------------- /modules/linphone/models/history/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/models/history/skeleton.js -------------------------------------------------------------------------------- /modules/linphone/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui.html -------------------------------------------------------------------------------- /modules/linphone/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui.js -------------------------------------------------------------------------------- /modules/linphone/ui/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/core.html -------------------------------------------------------------------------------- /modules/linphone/ui/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/core.js -------------------------------------------------------------------------------- /modules/linphone/ui/dialer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/dialer.html -------------------------------------------------------------------------------- /modules/linphone/ui/dialer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/dialer.js -------------------------------------------------------------------------------- /modules/linphone/ui/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/header.html -------------------------------------------------------------------------------- /modules/linphone/ui/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/header.js -------------------------------------------------------------------------------- /modules/linphone/ui/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/i18n.js -------------------------------------------------------------------------------- /modules/linphone/ui/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/locale.js -------------------------------------------------------------------------------- /modules/linphone/ui/mainbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/mainbar.html -------------------------------------------------------------------------------- /modules/linphone/ui/mainbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/mainbar.js -------------------------------------------------------------------------------- /modules/linphone/ui/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/menu.html -------------------------------------------------------------------------------- /modules/linphone/ui/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/menu.js -------------------------------------------------------------------------------- /modules/linphone/ui/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup.html -------------------------------------------------------------------------------- /modules/linphone/ui/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup.js -------------------------------------------------------------------------------- /modules/linphone/ui/popup/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/error.html -------------------------------------------------------------------------------- /modules/linphone/ui/popup/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/error.js -------------------------------------------------------------------------------- /modules/linphone/ui/popup/incall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/incall.html -------------------------------------------------------------------------------- /modules/linphone/ui/popup/incall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/incall.js -------------------------------------------------------------------------------- /modules/linphone/ui/popup/outcall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/outcall.html -------------------------------------------------------------------------------- /modules/linphone/ui/popup/outcall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/outcall.js -------------------------------------------------------------------------------- /modules/linphone/ui/popup/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/video.html -------------------------------------------------------------------------------- /modules/linphone/ui/popup/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/popup/video.js -------------------------------------------------------------------------------- /modules/linphone/ui/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/utils.js -------------------------------------------------------------------------------- /modules/linphone/ui/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/video.html -------------------------------------------------------------------------------- /modules/linphone/ui/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/video.js -------------------------------------------------------------------------------- /modules/linphone/ui/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view.html -------------------------------------------------------------------------------- /modules/linphone/ui/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/about.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/about.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/call.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/call.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/chat.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/chat.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/conference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/conference.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/conference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/conference.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/contact.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/contact.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/contacts.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/contacts.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/error.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/error.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/help.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/help.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/history.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/history.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/install.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/install.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/login.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/login.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/main.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/main.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/plugin.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/plugin.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/settings.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/settings.js -------------------------------------------------------------------------------- /modules/linphone/ui/view/settings/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/settings/media.html -------------------------------------------------------------------------------- /modules/linphone/ui/view/settings/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/linphone/ui/view/settings/media.js -------------------------------------------------------------------------------- /modules/plugin/linphone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/modules/plugin/linphone.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/package.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/server/server.js -------------------------------------------------------------------------------- /statics/conf/advanced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/conf/advanced.xml -------------------------------------------------------------------------------- /statics/conf/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/conf/simple.xml -------------------------------------------------------------------------------- /statics/hb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statics/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/analytics.js -------------------------------------------------------------------------------- /statics/js/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/handlebars.js -------------------------------------------------------------------------------- /statics/js/handlebars.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/handlebars.runtime.js -------------------------------------------------------------------------------- /statics/js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/i18n.js -------------------------------------------------------------------------------- /statics/js/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery-1.10.1.js -------------------------------------------------------------------------------- /statics/js/jquery-ui-1.10.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery-ui-1.10.3.js -------------------------------------------------------------------------------- /statics/js/jquery.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery.client.js -------------------------------------------------------------------------------- /statics/js/jquery.geturlvars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery.geturlvars.js -------------------------------------------------------------------------------- /statics/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /statics/js/jquery.watermark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jquery.watermark.js -------------------------------------------------------------------------------- /statics/js/jsonsql-0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/jsonsql-0.1.js -------------------------------------------------------------------------------- /statics/js/persistent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/persistent.js -------------------------------------------------------------------------------- /statics/js/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/sha1.js -------------------------------------------------------------------------------- /statics/js/vertical.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/js/vertical.slider.js -------------------------------------------------------------------------------- /statics/style/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/statics/style/reset.css -------------------------------------------------------------------------------- /themes/default/font/aller_rg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_rg-webfont.eot -------------------------------------------------------------------------------- /themes/default/font/aller_rg-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_rg-webfont.svg -------------------------------------------------------------------------------- /themes/default/font/aller_rg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_rg-webfont.ttf -------------------------------------------------------------------------------- /themes/default/font/aller_rg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_rg-webfont.woff -------------------------------------------------------------------------------- /themes/default/font/aller_std_bd-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_std_bd-webfont.eot -------------------------------------------------------------------------------- /themes/default/font/aller_std_bd-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_std_bd-webfont.svg -------------------------------------------------------------------------------- /themes/default/font/aller_std_bd-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_std_bd-webfont.ttf -------------------------------------------------------------------------------- /themes/default/font/aller_std_bd-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/font/aller_std_bd-webfont.woff -------------------------------------------------------------------------------- /themes/default/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/add.png -------------------------------------------------------------------------------- /themes/default/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/avatar.jpg -------------------------------------------------------------------------------- /themes/default/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/avatar.png -------------------------------------------------------------------------------- /themes/default/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/avatar2.jpg -------------------------------------------------------------------------------- /themes/default/img/backgroundLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/backgroundLogo.png -------------------------------------------------------------------------------- /themes/default/img/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/call.png -------------------------------------------------------------------------------- /themes/default/img/callEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/callEnd.png -------------------------------------------------------------------------------- /themes/default/img/callOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/callOff.png -------------------------------------------------------------------------------- /themes/default/img/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/chat.png -------------------------------------------------------------------------------- /themes/default/img/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/check.png -------------------------------------------------------------------------------- /themes/default/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/close.png -------------------------------------------------------------------------------- /themes/default/img/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/collapse.png -------------------------------------------------------------------------------- /themes/default/img/confAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/confAdd.png -------------------------------------------------------------------------------- /themes/default/img/contactAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/contactAdd.png -------------------------------------------------------------------------------- /themes/default/img/contactClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/contactClose.png -------------------------------------------------------------------------------- /themes/default/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/delete.png -------------------------------------------------------------------------------- /themes/default/img/dialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/dialer.png -------------------------------------------------------------------------------- /themes/default/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/error.png -------------------------------------------------------------------------------- /themes/default/img/errorMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/errorMessage.png -------------------------------------------------------------------------------- /themes/default/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/expand.png -------------------------------------------------------------------------------- /themes/default/img/inProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/inProgress.png -------------------------------------------------------------------------------- /themes/default/img/linphone.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/linphone.ico -------------------------------------------------------------------------------- /themes/default/img/linphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/linphone.png -------------------------------------------------------------------------------- /themes/default/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/loader.gif -------------------------------------------------------------------------------- /themes/default/img/loaderCircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/loaderCircle.gif -------------------------------------------------------------------------------- /themes/default/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/logo.png -------------------------------------------------------------------------------- /themes/default/img/logoBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/logoBig.png -------------------------------------------------------------------------------- /themes/default/img/logoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/logoIcon.png -------------------------------------------------------------------------------- /themes/default/img/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/logout.png -------------------------------------------------------------------------------- /themes/default/img/modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/modify.png -------------------------------------------------------------------------------- /themes/default/img/numberMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/numberMessage.png -------------------------------------------------------------------------------- /themes/default/img/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/offline.png -------------------------------------------------------------------------------- /themes/default/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/pause.png -------------------------------------------------------------------------------- /themes/default/img/pauseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/pauseButton.png -------------------------------------------------------------------------------- /themes/default/img/pauseHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/pauseHover.png -------------------------------------------------------------------------------- /themes/default/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/play.png -------------------------------------------------------------------------------- /themes/default/img/playHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/playHover.png -------------------------------------------------------------------------------- /themes/default/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/refresh.png -------------------------------------------------------------------------------- /themes/default/img/ringtone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/ringtone.png -------------------------------------------------------------------------------- /themes/default/img/ringtoneMainbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/ringtoneMainbar.png -------------------------------------------------------------------------------- /themes/default/img/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/send.png -------------------------------------------------------------------------------- /themes/default/img/sendChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/sendChat.png -------------------------------------------------------------------------------- /themes/default/img/signal0b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/signal0b.png -------------------------------------------------------------------------------- /themes/default/img/signal1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/signal1b.png -------------------------------------------------------------------------------- /themes/default/img/signal2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/signal2b.png -------------------------------------------------------------------------------- /themes/default/img/signal3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/signal3b.png -------------------------------------------------------------------------------- /themes/default/img/signal4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/signal4b.png -------------------------------------------------------------------------------- /themes/default/img/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/speaker.png -------------------------------------------------------------------------------- /themes/default/img/statusAway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusAway.png -------------------------------------------------------------------------------- /themes/default/img/statusBusy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusBusy.png -------------------------------------------------------------------------------- /themes/default/img/statusClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusClose.png -------------------------------------------------------------------------------- /themes/default/img/statusOffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusOffline.png -------------------------------------------------------------------------------- /themes/default/img/statusOnline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusOnline.png -------------------------------------------------------------------------------- /themes/default/img/statusOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/statusOpen.png -------------------------------------------------------------------------------- /themes/default/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/upload.png -------------------------------------------------------------------------------- /themes/default/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/img/video.png -------------------------------------------------------------------------------- /themes/default/linphone.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.dialer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.dialer.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.header.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.mainbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.mainbar.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.menu.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.popup.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.popup.error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.popup.error.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.popup.incall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.popup.incall.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.popup.outcall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.popup.outcall.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.popup.video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.popup.video.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.about.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.call.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.call.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.chat.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.conference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.conference.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.contact.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.contacts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.contacts.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.error.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.help.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.history.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.install.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.login.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.main.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.plugin.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.settings.css -------------------------------------------------------------------------------- /themes/default/linphone.ui.view.settings.media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-web-ui/HEAD/themes/default/linphone.ui.view.settings.media.css --------------------------------------------------------------------------------