├── vendors └── simpletest │ ├── VERSION │ ├── docs │ └── fr │ │ └── server_stubs_documentation.html │ └── test │ ├── support │ ├── collector │ │ ├── collectable.1 │ │ └── collectable.2 │ ├── upload_sample.txt │ ├── supplementary_upload_sample.txt │ ├── empty_test_file.php │ ├── latin1_sample │ ├── test1.php │ └── spl_examples.php │ ├── url_test.php │ ├── parser_test.php │ ├── acceptance_test.php │ ├── test_with_parse_error.php │ ├── parse_error_test.php │ ├── bad_test_suite.php │ ├── autorun_test.php │ └── all_tests.php ├── mod ├── messages │ ├── views │ │ └── default │ │ │ ├── object │ │ │ └── messages.php │ │ │ └── widgets │ │ │ └── messages │ │ │ ├── edit.php │ │ │ └── view.php │ ├── graphics │ │ └── icon_notifications_site.gif │ └── manifest.xml ├── groups │ ├── views │ │ ├── rss │ │ │ ├── forum │ │ │ │ ├── topicposts.php │ │ │ │ └── topics.php │ │ │ └── groups │ │ │ │ └── contentwrapper.php │ │ └── default │ │ │ ├── icon │ │ │ └── group │ │ │ │ └── default │ │ │ │ ├── tiny.php │ │ │ │ ├── large.php │ │ │ │ ├── medium.php │ │ │ │ └── small.php │ │ │ ├── groups │ │ │ ├── contentwrapper.php │ │ │ ├── closedmembership.php │ │ │ └── side_menu.php │ │ │ ├── river │ │ │ ├── object │ │ │ │ ├── group │ │ │ │ │ └── create.php │ │ │ │ └── groupforumtopic │ │ │ │ │ └── update.php │ │ │ └── group │ │ │ │ └── create.php │ │ │ └── settings │ │ │ └── groups │ │ │ └── edit.php │ ├── graphics │ │ ├── defaulttiny.gif │ │ ├── defaultlarge.gif │ │ ├── defaultmedium.gif │ │ └── defaultsmall.gif │ ├── manifest.xml │ └── actions │ │ └── delete.php ├── tinymce │ ├── tinymce │ │ ├── jscripts │ │ │ └── tiny_mce │ │ │ │ ├── plugins │ │ │ │ ├── safari │ │ │ │ │ ├── blank.htm │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── paste │ │ │ │ │ ├── css │ │ │ │ │ │ ├── pasteword.css │ │ │ │ │ │ └── blank.css │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── example │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── img │ │ │ │ │ │ └── example.gif │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── advhr │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ └── advhr.css │ │ │ │ ├── spellchecker │ │ │ │ │ ├── css │ │ │ │ │ │ └── content.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── wline.gif │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── media │ │ │ │ │ ├── img │ │ │ │ │ │ ├── flash.gif │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ ├── flv_player.swf │ │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ │ └── windowsmedia.gif │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── xhtmlxtras │ │ │ │ │ ├── js │ │ │ │ │ │ ├── abbr.js │ │ │ │ │ │ ├── cite.js │ │ │ │ │ │ ├── del.js │ │ │ │ │ │ ├── ins.js │ │ │ │ │ │ ├── acronym.js │ │ │ │ │ │ ├── attributes.js │ │ │ │ │ │ └── element_common.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ └── attributes.css │ │ │ │ ├── advimage │ │ │ │ │ ├── img │ │ │ │ │ │ └── sample.gif │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── pagebreak │ │ │ │ │ ├── img │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ └── content.css │ │ │ │ ├── bbcode │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── emotions │ │ │ │ │ ├── img │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ ├── smiley-yell.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ └── smiley-money-mouth.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── layer │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── print │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── save │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── style │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── table │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ ├── table.css │ │ │ │ │ │ ├── cell.css │ │ │ │ │ │ └── row.css │ │ │ │ ├── advlink │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ └── advlink.css │ │ │ │ ├── autosave │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── compat2x │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── fullpage │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── iespell │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── preview │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── template │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── template.css │ │ │ │ │ └── blank.htm │ │ │ │ ├── contextmenu │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── fullscreen │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── nonbreaking │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── noneditable │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── visualchars │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── inlinepopups │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── skins │ │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ └── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── vertical.gif │ │ │ │ │ │ └── horizontal.gif │ │ │ │ ├── searchreplace │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── css │ │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── directionality │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ └── insertdatetime │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── utils │ │ │ │ ├── mctabs.js │ │ │ │ ├── validate.js │ │ │ │ ├── form_utils.js │ │ │ │ └── editable_selects.js │ │ │ │ └── themes │ │ │ │ ├── simple │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── skins │ │ │ │ │ └── o2k7 │ │ │ │ │ │ └── img │ │ │ │ │ │ └── button_bg.png │ │ │ │ └── langs │ │ │ │ │ └── en.js │ │ │ │ └── advanced │ │ │ │ ├── img │ │ │ │ ├── icons.gif │ │ │ │ └── colorpicker.jpg │ │ │ │ ├── editor_template_src.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ └── img │ │ │ │ │ ├── tabs.gif │ │ │ │ │ ├── buttons.png │ │ │ │ │ ├── items.gif │ │ │ │ │ ├── progress.gif │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ └── menu_check.gif │ │ │ │ └── o2k7 │ │ │ │ └── img │ │ │ │ ├── button_bg.png │ │ │ │ ├── button_bg_black.png │ │ │ │ └── button_bg_silver.png │ │ └── changelog.txt │ ├── readme.txt │ ├── views │ │ └── default │ │ │ ├── embed │ │ │ └── addcontentjs.php │ │ │ └── tinymce │ │ │ └── css.php │ ├── languages │ │ └── en.php │ └── manifest.xml ├── notifications │ ├── views │ │ └── default │ │ │ └── notifications │ │ │ └── settings │ │ │ └── usersettings.php │ ├── graphics │ │ └── icon_notifications_email.gif │ └── manifest.xml ├── riverdashboard │ ├── views │ │ ├── json │ │ │ └── riverdashboard │ │ │ │ └── container.php │ │ ├── rss │ │ │ └── riverdashboard │ │ │ │ └── container.php │ │ └── default │ │ │ └── riverdashboard │ │ │ ├── container.php │ │ │ ├── js.php │ │ │ └── welcome.php │ ├── graphics │ │ └── follow_icon.png │ └── manifest.xml ├── captcha │ ├── fonts │ │ ├── 1.ttf │ │ └── Liberation_serif_License.txt │ ├── backgrounds │ │ ├── bg1.jpg │ │ ├── bg2.jpg │ │ ├── bg3.jpg │ │ ├── bg4.jpg │ │ └── bg5.jpg │ ├── views │ │ └── default │ │ │ └── captcha │ │ │ └── css.php │ └── manifest.xml ├── pages │ ├── images │ │ ├── db.png │ │ ├── code.png │ │ ├── css.png │ │ ├── doc.png │ │ ├── file.gif │ │ ├── file.png │ │ ├── film.png │ │ ├── html.png │ │ ├── java.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── plus.gif │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── ruby.png │ │ ├── txt.png │ │ ├── xls.png │ │ ├── zip.png │ │ ├── flash.png │ │ ├── folder.gif │ │ ├── linux.png │ │ ├── minus.gif │ │ ├── music.png │ │ ├── pages.gif │ │ ├── picture.png │ │ ├── script.png │ │ ├── spinner.gif │ │ ├── directory.png │ │ ├── pages_lrg.gif │ │ ├── application.png │ │ ├── folder_open.png │ │ ├── treeview-red.gif │ │ ├── folder-closed.gif │ │ ├── treeview-black.gif │ │ ├── treeview-gray.gif │ │ ├── treeview-default.gif │ │ ├── treeview-red-line.gif │ │ ├── treeview-black-line.gif │ │ ├── treeview-famfamfam.gif │ │ ├── treeview-gray-line.gif │ │ ├── treeview-default-line.gif │ │ └── treeview-famfamfam-line.gif │ ├── views │ │ └── default │ │ │ ├── icon │ │ │ └── object │ │ │ │ ├── page │ │ │ │ ├── small.php │ │ │ │ └── medium.php │ │ │ │ └── page_top │ │ │ │ ├── small.php │ │ │ │ └── medium.php │ │ │ ├── pages │ │ │ ├── sidebar │ │ │ │ ├── wrapper.php │ │ │ │ ├── tree.php │ │ │ │ └── starter.php │ │ │ └── menu.php │ │ │ └── widgets │ │ │ └── pages │ │ │ └── edit.php │ ├── pagesTree.php │ └── manifest.xml ├── embed │ ├── images │ │ ├── loading.gif │ │ ├── close_button.gif │ │ ├── media_modal.png │ │ └── button_spacer.gif │ ├── views │ │ └── default │ │ │ ├── embed │ │ │ ├── addcontentjs.php │ │ │ ├── metatags.php │ │ │ └── link.php │ │ │ ├── site │ │ │ └── default │ │ │ │ └── embed.php │ │ │ ├── user │ │ │ └── default │ │ │ │ └── embed.php │ │ │ ├── group │ │ │ └── default │ │ │ │ └── embed.php │ │ │ └── object │ │ │ └── default │ │ │ └── embed.php │ ├── README.txt │ ├── upload.php │ ├── languages │ │ └── en.php │ └── manifest.xml ├── file │ ├── views │ │ └── default │ │ │ └── file │ │ │ ├── icon │ │ │ ├── audio │ │ │ │ └── default.php │ │ │ ├── video │ │ │ │ └── default.php │ │ │ ├── application │ │ │ │ ├── zip.php │ │ │ │ ├── x-gzip.php │ │ │ │ ├── x-stuffit.php │ │ │ │ ├── x-rar-compressed.php │ │ │ │ ├── pdf.php │ │ │ │ ├── excel.php │ │ │ │ ├── msword.php │ │ │ │ ├── powerpoint.php │ │ │ │ ├── default.php │ │ │ │ ├── vnd.ms-excel.php │ │ │ │ ├── vnd.ms-powerpoint.php │ │ │ │ └── vnd.oasis.opendocument.text.php │ │ │ ├── text │ │ │ │ ├── default.php │ │ │ │ ├── v-card.php │ │ │ │ └── directory.php │ │ │ ├── default.php │ │ │ ├── audio.php │ │ │ ├── document.php │ │ │ ├── video.php │ │ │ └── archive.php │ │ │ ├── specialcontent │ │ │ ├── audio │ │ │ │ ├── mid.php │ │ │ │ ├── mp3.php │ │ │ │ ├── mpeg.php │ │ │ │ └── x-wav.php │ │ │ └── image │ │ │ │ └── default.php │ │ │ └── menu.php │ ├── graphics │ │ └── icons │ │ │ ├── excel.gif │ │ │ ├── music.gif │ │ │ ├── pages.gif │ │ │ ├── pdf.gif │ │ │ ├── ppt.gif │ │ │ ├── text.gif │ │ │ ├── vcard.gif │ │ │ ├── video.gif │ │ │ ├── word.gif │ │ │ ├── archive.gif │ │ │ ├── general.gif │ │ │ ├── pdf_lrg.gif │ │ │ ├── ppt_lrg.gif │ │ │ ├── excel_lrg.gif │ │ │ ├── music_lrg.gif │ │ │ ├── openoffice.gif │ │ │ ├── pages_lrg.gif │ │ │ ├── text_lrg.gif │ │ │ ├── vcard_lrg.gif │ │ │ ├── video_lrg.gif │ │ │ ├── word_lrg.gif │ │ │ ├── application.gif │ │ │ ├── archive_lrg.gif │ │ │ ├── general_lrg.gif │ │ │ ├── application_lrg.gif │ │ │ └── openoffice_lrg.gif │ └── manifest.xml ├── twitter │ ├── graphics │ │ ├── twitter.png │ │ └── thewire_speech_bubble.gif │ └── manifest.xml ├── zaudio │ ├── audioplayer │ │ └── player.swf │ └── readme.txt ├── profile │ ├── graphics │ │ ├── defaultlarge.gif │ │ ├── defaultmaster.gif │ │ ├── defaultmedium.gif │ │ ├── defaultsmall.gif │ │ ├── defaulttiny.gif │ │ └── defaulttopbar.gif │ ├── views │ │ └── default │ │ │ ├── icon │ │ │ └── user │ │ │ │ └── default │ │ │ │ ├── large.php │ │ │ │ ├── master.php │ │ │ │ ├── medium.php │ │ │ │ ├── small.php │ │ │ │ ├── tiny.php │ │ │ │ └── topbar.php │ │ │ ├── profile │ │ │ └── menu │ │ │ │ └── adminwrapper.php │ │ │ └── river │ │ │ └── user │ │ │ └── default │ │ │ ├── profileupdate.php │ │ │ └── profileiconupdate.php │ └── manifest.xml ├── thewire │ ├── graphics │ │ ├── river_icon_thewire.gif │ │ └── thewire_speech_bubble.gif │ ├── views │ │ └── default │ │ │ └── thewire │ │ │ └── notfound.php │ └── readme.txt ├── logbrowser │ ├── views │ │ └── default │ │ │ └── logbrowser │ │ │ └── adminlinks.php │ └── manifest.xml ├── members │ └── views │ │ └── default │ │ └── members │ │ └── online.php ├── twitterservice │ ├── vendors │ │ └── twitter │ │ │ ├── send.php │ │ │ └── load.php │ └── languages │ │ └── en.php ├── blog │ ├── views │ │ └── default │ │ │ ├── blog │ │ │ ├── categorylist.php │ │ │ ├── previewpane.php │ │ │ ├── notfound.php │ │ │ └── menu.php │ │ │ └── river │ │ │ └── object │ │ │ └── blog │ │ │ ├── annotate.php │ │ │ └── update.php │ └── manifest.xml ├── categories │ ├── views │ │ └── default │ │ │ └── categories │ │ │ ├── settingsform.php │ │ │ └── settings.php │ ├── manifest.xml │ └── languages │ │ └── en.php ├── friends │ ├── languages │ │ └── en.php │ └── manifest.xml ├── search │ ├── views │ │ └── default │ │ │ └── search │ │ │ ├── startblurb.php │ │ │ ├── layout.php │ │ │ └── gallery_listing.php │ └── manifest.xml ├── reportedcontent │ └── views │ │ └── default │ │ └── reportedcontent │ │ ├── user_report.php │ │ └── owner_block.php ├── externalpages │ └── views │ │ └── default │ │ ├── object │ │ └── expages.php │ │ └── expages │ │ └── css.php ├── bookmarks │ ├── views │ │ └── default │ │ │ ├── bookmarks │ │ │ └── owner_block.php │ │ │ └── river │ │ │ └── object │ │ │ └── bookmarks │ │ │ └── annotate.php │ └── manifest.xml ├── diagnostics │ ├── views │ │ └── default │ │ │ └── diagnostics │ │ │ ├── forms │ │ │ └── download.php │ │ │ └── runalltests.php │ └── manifest.xml ├── custom_index │ └── languages │ │ └── en.php ├── garbagecollector │ └── manifest.xml ├── logrotate │ └── manifest.xml ├── messageboard │ ├── readme.txt │ └── views │ │ └── default │ │ └── river │ │ └── object │ │ └── messageboard │ │ └── create.php ├── htmlawed │ └── manifest.xml ├── uservalidationbyemail │ └── manifest.xml ├── invitefriends │ └── manifest.xml └── crontrigger │ └── manifest.xml ├── _graphics ├── spacer.gif ├── icon_odd.gif ├── icon_rss.gif ├── icon_tag.gif ├── ajax_loader.gif ├── icon_gallery.gif ├── elgg_bookmarklet.gif ├── icon_reportthis.gif ├── avatar_menu_arrows.gif ├── elgg_toolbar_logo.gif ├── elgg_toolbar_logout.gif ├── icon_bookmarkthis.gif ├── icon_customise_drag.gif ├── icon_customise_info.gif ├── icons │ └── default │ │ ├── large.png │ │ ├── small.png │ │ ├── tiny.png │ │ ├── medium.png │ │ └── topbar.png ├── friends_picker_arrows.gif ├── icon_customise_remove.gif ├── icon_customise_remove.png ├── thewire_speech_bubble.gif ├── toolbar_messages_icon.gif ├── toptoolbar_background.gif ├── river_icons │ ├── river_icon_blog.gif │ ├── river_icon_feed.gif │ ├── river_icon_files.gif │ ├── river_icon_forum.gif │ ├── river_icon_pages.gif │ ├── river_icon_plugin.gif │ ├── river_icon_status.gif │ ├── river_icon_comment.gif │ ├── river_icon_friends.gif │ ├── river_icon_profile.gif │ ├── river_icon_thewire.gif │ ├── river_icon_bookmarks.gif │ ├── river_icon_messageboard.gif │ └── river_icon_privatemessage.gif ├── powered_by_elgg_badge_drk_bckgnd.gif └── powered_by_elgg_badge_light_bckgnd.gif ├── engine ├── schema │ └── upgrades │ │ ├── 2010012901.sql │ │ ├── 2010030101.sql │ │ ├── 2009021301.sql │ │ ├── 2009010901.sql │ │ ├── 2008110601.sql │ │ ├── 2009091901.sql │ │ ├── 2009051401.sql │ │ ├── 2009010801.sql │ │ ├── 2009052201.sql │ │ ├── 2008102101.sql │ │ ├── 2008112501.sql │ │ ├── 2008111901.sql │ │ ├── 2008101701.sql │ │ └── 2008120501.sql ├── lib │ └── upgrades │ │ ├── 2010010501.php │ │ ├── 2009022701.php │ │ ├── 2009041701.php │ │ ├── 2008100701.php │ │ ├── 2008101303.php │ │ └── 2009070101.php └── handlers │ ├── action_handler.php │ ├── service_handler.php │ └── pagehandler.php ├── views ├── default │ ├── usersettings │ │ ├── user.php │ │ ├── statistics.php │ │ ├── main.php │ │ ├── form.php │ │ └── main_opt │ │ │ └── user.php │ ├── text │ │ ├── tos_view.php │ │ ├── privacy_view.php │ │ └── about.php │ ├── admin │ │ ├── statistics.php │ │ ├── main.php │ │ ├── statistics_opt │ │ │ └── online.php │ │ ├── main_opt │ │ │ ├── site.php │ │ │ └── user.php │ │ └── user_opt │ │ │ └── adduser.php │ ├── river │ │ ├── item │ │ │ └── noaccess.php │ │ └── dashboard.php │ ├── input │ │ ├── captcha.php │ │ ├── urlshortener.php │ │ └── securitytoken.php │ ├── object │ │ ├── widget.php │ │ └── object.php │ ├── group │ │ ├── default.php │ │ └── search │ │ │ └── startblurb.php │ ├── canvas │ │ ├── default.php │ │ └── layouts │ │ │ ├── one_column.php │ │ │ └── edit_layout.php │ ├── welcome.php │ ├── output │ │ ├── iframe.php │ │ ├── radio.php │ │ ├── checkboxes.php │ │ ├── date.php │ │ ├── text.php │ │ ├── pulldown.php │ │ ├── longtext.php │ │ ├── calendar.php │ │ └── email.php │ ├── welcome │ │ └── logged_out.php │ ├── settings │ │ └── install.php │ ├── messages │ │ ├── errors │ │ │ └── error.php │ │ ├── messages │ │ │ └── message.php │ │ └── list.php │ ├── friends │ │ ├── forms │ │ │ └── collectionfields.php │ │ └── list.php │ ├── user │ │ ├── default.php │ │ └── search │ │ │ └── startblurb.php │ ├── page_elements │ │ └── contentwrapper.php │ ├── basic_elements │ │ └── welcome.php │ ├── site │ │ └── default.php │ ├── dashboard │ │ └── blurb.php │ ├── entities │ │ ├── entity_listing.php │ │ └── gallery_listing.php │ ├── ajax │ │ └── loader.php │ ├── canvas_header │ │ └── submenu_group.php │ └── export │ │ └── metadata.php ├── rss │ ├── page_elements │ │ ├── contentwrapper.php │ │ └── title.php │ ├── navigation │ │ └── pagination.php │ ├── canvas │ │ └── default.php │ └── search │ │ └── entity_list.php ├── foaf │ ├── page_elements │ │ ├── contentwrapper.php │ │ └── title.php │ ├── canvas │ │ └── default.php │ └── search │ │ └── entity_list.php ├── json │ ├── page_elements │ │ ├── title.php │ │ └── contentwrapper.php │ ├── canvas │ │ └── default.php │ ├── group │ │ └── default.php │ ├── site │ │ └── default.php │ ├── user │ │ └── default.php │ ├── object │ │ └── default.php │ ├── search │ │ └── entity_list.php │ ├── messages │ │ └── exceptions │ │ │ └── exception.php │ ├── api │ │ └── output.php │ ├── pageshells │ │ └── pageshell.php │ └── export │ │ ├── relationship.php │ │ └── metadata.php ├── php │ ├── group │ │ └── default.php │ ├── object │ │ └── default.php │ ├── pageshells │ │ └── pageshell.php │ ├── user │ │ └── default.php │ ├── canvas │ │ └── default.php │ ├── site │ │ └── default.php │ ├── messages │ │ └── exceptions │ │ │ └── exception.php │ ├── api │ │ └── output.php │ ├── search │ │ └── entity_list.php │ └── export │ │ ├── metadata.php │ │ ├── entity.php │ │ └── relationship.php ├── ical │ ├── object │ │ └── default.php │ ├── canvas │ │ └── default.php │ ├── search │ │ └── entity_list.php │ └── pageshells │ │ └── pageshell.php ├── xml │ ├── xml-rpc │ │ └── output.php │ ├── api │ │ └── output.php │ └── pageshells │ │ └── pageshell.php ├── js │ ├── object │ │ └── default.php │ ├── user │ │ └── default.php │ └── pageshells │ │ └── pageshell.php ├── opendd │ ├── user │ │ └── default.php │ ├── canvas │ │ └── default.php │ ├── group │ │ └── default.php │ ├── object │ │ └── default.php │ ├── site │ │ └── default.php │ ├── pageshells │ │ └── pageshell.php │ ├── search │ │ └── entity_list.php │ └── export │ │ ├── entity.php │ │ ├── relationship.php │ │ └── metadata.php └── failsafe │ ├── canvas │ └── default.php │ ├── messages │ ├── errors │ │ └── error.php │ ├── messages │ │ └── message.php │ ├── sanitisation │ │ └── htaccess.php │ └── list.php │ ├── settings │ └── install.php │ └── input │ └── securitytoken.php ├── actions ├── usersettings │ └── save.php ├── logout.php ├── friends │ └── editcollection.php └── user │ ├── spotlight.php │ └── passwordreset.php ├── admin └── index.php ├── entities └── list.php ├── version.php └── account └── forgotten_password.php /vendors/simpletest/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1 -------------------------------------------------------------------------------- /mod/messages/views/default/object/messages.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/messages/views/default/widgets/messages/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/groups/views/rss/forum/topicposts.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/docs/fr/server_stubs_documentation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/collector/collectable.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/collector/collectable.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/safari/blank.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/upload_sample.txt: -------------------------------------------------------------------------------- 1 | Sample for testing file upload -------------------------------------------------------------------------------- /mod/notifications/views/default/notifications/settings/usersettings.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/riverdashboard/views/json/riverdashboard/container.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/riverdashboard/views/rss/riverdashboard/container.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/supplementary_upload_sample.txt: -------------------------------------------------------------------------------- 1 | Some more text content -------------------------------------------------------------------------------- /mod/groups/views/rss/groups/contentwrapper.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_graphics/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/spacer.gif -------------------------------------------------------------------------------- /_graphics/icon_odd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_odd.gif -------------------------------------------------------------------------------- /_graphics/icon_rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_rss.gif -------------------------------------------------------------------------------- /_graphics/icon_tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_tag.gif -------------------------------------------------------------------------------- /mod/captcha/fonts/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/fonts/1.ttf -------------------------------------------------------------------------------- /mod/pages/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/db.png -------------------------------------------------------------------------------- /_graphics/ajax_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/ajax_loader.gif -------------------------------------------------------------------------------- /mod/pages/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/code.png -------------------------------------------------------------------------------- /mod/pages/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/css.png -------------------------------------------------------------------------------- /mod/pages/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/doc.png -------------------------------------------------------------------------------- /mod/pages/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/file.gif -------------------------------------------------------------------------------- /mod/pages/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/file.png -------------------------------------------------------------------------------- /mod/pages/images/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/film.png -------------------------------------------------------------------------------- /mod/pages/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/html.png -------------------------------------------------------------------------------- /mod/pages/images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/java.png -------------------------------------------------------------------------------- /mod/pages/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/pdf.png -------------------------------------------------------------------------------- /mod/pages/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/php.png -------------------------------------------------------------------------------- /mod/pages/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/plus.gif -------------------------------------------------------------------------------- /mod/pages/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/ppt.png -------------------------------------------------------------------------------- /mod/pages/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/psd.png -------------------------------------------------------------------------------- /mod/pages/images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/ruby.png -------------------------------------------------------------------------------- /mod/pages/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/txt.png -------------------------------------------------------------------------------- /mod/pages/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/xls.png -------------------------------------------------------------------------------- /mod/pages/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/zip.png -------------------------------------------------------------------------------- /_graphics/icon_gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_gallery.gif -------------------------------------------------------------------------------- /mod/embed/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/embed/images/loading.gif -------------------------------------------------------------------------------- /mod/pages/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/flash.png -------------------------------------------------------------------------------- /mod/pages/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/folder.gif -------------------------------------------------------------------------------- /mod/pages/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/linux.png -------------------------------------------------------------------------------- /mod/pages/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/minus.gif -------------------------------------------------------------------------------- /mod/pages/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/music.png -------------------------------------------------------------------------------- /mod/pages/images/pages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/pages.gif -------------------------------------------------------------------------------- /mod/pages/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/picture.png -------------------------------------------------------------------------------- /mod/pages/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/script.png -------------------------------------------------------------------------------- /mod/pages/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/spinner.gif -------------------------------------------------------------------------------- /_graphics/elgg_bookmarklet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/elgg_bookmarklet.gif -------------------------------------------------------------------------------- /_graphics/icon_reportthis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_reportthis.gif -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/audio/default.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/video/default.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/directory.png -------------------------------------------------------------------------------- /mod/pages/images/pages_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/pages_lrg.gif -------------------------------------------------------------------------------- /mod/pages/views/default/icon/object/page/small.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_graphics/avatar_menu_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/avatar_menu_arrows.gif -------------------------------------------------------------------------------- /_graphics/elgg_toolbar_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/elgg_toolbar_logo.gif -------------------------------------------------------------------------------- /_graphics/elgg_toolbar_logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/elgg_toolbar_logout.gif -------------------------------------------------------------------------------- /_graphics/icon_bookmarkthis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_bookmarkthis.gif -------------------------------------------------------------------------------- /_graphics/icon_customise_drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_customise_drag.gif -------------------------------------------------------------------------------- /_graphics/icon_customise_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_customise_info.gif -------------------------------------------------------------------------------- /_graphics/icons/default/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icons/default/large.png -------------------------------------------------------------------------------- /_graphics/icons/default/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icons/default/small.png -------------------------------------------------------------------------------- /_graphics/icons/default/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icons/default/tiny.png -------------------------------------------------------------------------------- /mod/captcha/backgrounds/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/backgrounds/bg1.jpg -------------------------------------------------------------------------------- /mod/captcha/backgrounds/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/backgrounds/bg2.jpg -------------------------------------------------------------------------------- /mod/captcha/backgrounds/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/backgrounds/bg3.jpg -------------------------------------------------------------------------------- /mod/captcha/backgrounds/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/backgrounds/bg4.jpg -------------------------------------------------------------------------------- /mod/captcha/backgrounds/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/backgrounds/bg5.jpg -------------------------------------------------------------------------------- /mod/embed/images/close_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/embed/images/close_button.gif -------------------------------------------------------------------------------- /mod/embed/images/media_modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/embed/images/media_modal.png -------------------------------------------------------------------------------- /mod/file/graphics/icons/excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/excel.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/music.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/music.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/pages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/pages.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/pdf.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/ppt.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/text.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/vcard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/vcard.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/video.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/word.gif -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/zip.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/text/default.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/application.png -------------------------------------------------------------------------------- /mod/pages/images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/folder_open.png -------------------------------------------------------------------------------- /mod/pages/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-red.gif -------------------------------------------------------------------------------- /mod/pages/views/default/icon/object/page/medium.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/views/default/icon/object/page_top/small.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/changelog.txt -------------------------------------------------------------------------------- /mod/twitter/graphics/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/twitter/graphics/twitter.png -------------------------------------------------------------------------------- /mod/zaudio/audioplayer/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/zaudio/audioplayer/player.swf -------------------------------------------------------------------------------- /vendors/simpletest/test/support/empty_test_file.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_graphics/friends_picker_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/friends_picker_arrows.gif -------------------------------------------------------------------------------- /_graphics/icon_customise_remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_customise_remove.gif -------------------------------------------------------------------------------- /_graphics/icon_customise_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icon_customise_remove.png -------------------------------------------------------------------------------- /_graphics/icons/default/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icons/default/medium.png -------------------------------------------------------------------------------- /_graphics/icons/default/topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/icons/default/topbar.png -------------------------------------------------------------------------------- /_graphics/thewire_speech_bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/thewire_speech_bubble.gif -------------------------------------------------------------------------------- /_graphics/toolbar_messages_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/toolbar_messages_icon.gif -------------------------------------------------------------------------------- /_graphics/toptoolbar_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/toptoolbar_background.gif -------------------------------------------------------------------------------- /mod/captcha/views/default/captcha/css.php: -------------------------------------------------------------------------------- 1 | 2 | .captcha-input-image { 3 | text-align: center; 4 | margin: auto; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /mod/embed/images/button_spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/embed/images/button_spacer.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/archive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/archive.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/general.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/general.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/pdf_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/pdf_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/ppt_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/ppt_lrg.gif -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/x-gzip.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/x-stuffit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/text/v-card.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/groups/graphics/defaulttiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/groups/graphics/defaulttiny.gif -------------------------------------------------------------------------------- /mod/groups/views/default/icon/group/default/tiny.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/folder-closed.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-black.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-gray.gif -------------------------------------------------------------------------------- /mod/pages/views/default/icon/object/page_top/medium.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/views/default/pages/sidebar/wrapper.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css: -------------------------------------------------------------------------------- 1 | .sourceIframe { 2 | border: 1px solid #808080; 3 | } 4 | -------------------------------------------------------------------------------- /engine/schema/upgrades/2010012901.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `prefix_entities` ADD `last_action` INT( 11 ) NOT NULL AFTER `time_updated` 2 | -------------------------------------------------------------------------------- /mod/file/graphics/icons/excel_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/excel_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/music_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/music_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/openoffice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/openoffice.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/pages_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/pages_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/text_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/text_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/vcard_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/vcard_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/video_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/video_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/word_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/word_lrg.gif -------------------------------------------------------------------------------- /mod/groups/graphics/defaultlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/groups/graphics/defaultlarge.gif -------------------------------------------------------------------------------- /mod/groups/graphics/defaultmedium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/groups/graphics/defaultmedium.gif -------------------------------------------------------------------------------- /mod/groups/graphics/defaultsmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/groups/graphics/defaultsmall.gif -------------------------------------------------------------------------------- /mod/groups/views/default/icon/group/default/large.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/groups/views/default/icon/group/default/medium.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/groups/views/default/icon/group/default/small.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/pages/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-default.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-red-line.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaultlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaultlarge.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaultmaster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaultmaster.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaultmedium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaultmedium.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaultsmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaultsmall.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaulttiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaulttiny.gif -------------------------------------------------------------------------------- /mod/profile/graphics/defaulttopbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/profile/graphics/defaulttopbar.gif -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/large.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/master.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/medium.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/small.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/tiny.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/profile/views/default/icon/user/default/topbar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/simpletest/test/url_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/vendors/simpletest/test/url_test.php -------------------------------------------------------------------------------- /engine/schema/upgrades/2010030101.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `prefix_entities` CHANGE `last_action` `last_action` INT( 11 ) NOT NULL DEFAULT '0' 2 | -------------------------------------------------------------------------------- /mod/file/graphics/icons/application.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/application.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/archive_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/archive_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/general_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/general_lrg.gif -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/x-rar-compressed.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/groups/views/default/groups/contentwrapper.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mod/pages/images/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-black-line.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-famfamfam.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-gray-line.gif -------------------------------------------------------------------------------- /vendors/simpletest/test/parser_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/vendors/simpletest/test/parser_test.php -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_blog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_blog.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_feed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_feed.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_files.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_files.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_forum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_forum.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_pages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_pages.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_plugin.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_status.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_status.gif -------------------------------------------------------------------------------- /engine/schema/upgrades/2009021301.sql: -------------------------------------------------------------------------------- 1 | -- Changing the ACLs on existing groups 2 | UPDATE `prefix_entities` SET access_id=2 WHERE type='group'; -------------------------------------------------------------------------------- /mod/file/graphics/icons/application_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/application_lrg.gif -------------------------------------------------------------------------------- /mod/file/graphics/icons/openoffice_lrg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/file/graphics/icons/openoffice_lrg.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-default-line.gif -------------------------------------------------------------------------------- /mod/riverdashboard/graphics/follow_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/riverdashboard/graphics/follow_icon.png -------------------------------------------------------------------------------- /mod/thewire/graphics/river_icon_thewire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/thewire/graphics/river_icon_thewire.gif -------------------------------------------------------------------------------- /vendors/simpletest/test/acceptance_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/vendors/simpletest/test/acceptance_test.php -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_comment.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_friends.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_friends.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_profile.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_thewire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_thewire.gif -------------------------------------------------------------------------------- /mod/pages/images/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/pages/images/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /mod/riverdashboard/views/default/riverdashboard/container.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
-------------------------------------------------------------------------------- /mod/tinymce/readme.txt: -------------------------------------------------------------------------------- 1 | Notes: 2 | 3 | * A simple tinymce plugin 4 | 5 | Instructions: 6 | 7 | Drop into mod, enable in the admin planel and use. -------------------------------------------------------------------------------- /mod/tinymce/views/default/embed/addcontentjs.php: -------------------------------------------------------------------------------- 1 | 2 | if(window.tinyMCE) 3 | window.tinyMCE.execCommand("mceInsertContent",true,content); 4 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/latin1_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/vendors/simpletest/test/support/latin1_sample -------------------------------------------------------------------------------- /_graphics/powered_by_elgg_badge_drk_bckgnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/powered_by_elgg_badge_drk_bckgnd.gif -------------------------------------------------------------------------------- /_graphics/powered_by_elgg_badge_light_bckgnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/powered_by_elgg_badge_light_bckgnd.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_bookmarks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_bookmarks.gif -------------------------------------------------------------------------------- /mod/captcha/fonts/Liberation_serif_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/captcha/fonts/Liberation_serif_License.txt -------------------------------------------------------------------------------- /mod/thewire/graphics/thewire_speech_bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/thewire/graphics/thewire_speech_bubble.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /mod/twitter/graphics/thewire_speech_bubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/twitter/graphics/thewire_speech_bubble.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_messageboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_messageboard.gif -------------------------------------------------------------------------------- /mod/messages/graphics/icon_notifications_site.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/messages/graphics/icon_notifications_site.gif -------------------------------------------------------------------------------- /_graphics/river_icons/river_icon_privatemessage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/_graphics/river_icons/river_icon_privatemessage.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/utils/mctabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/utils/mctabs.js -------------------------------------------------------------------------------- /mod/notifications/graphics/icon_notifications_email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/notifications/graphics/icon_notifications_email.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/utils/validate.js -------------------------------------------------------------------------------- /views/default/usersettings/user.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engine/lib/upgrades/2010010501.php: -------------------------------------------------------------------------------- 1 | site->guid); 9 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/utils/form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/utils/form_utils.js -------------------------------------------------------------------------------- /mod/embed/views/default/embed/addcontentjs.php: -------------------------------------------------------------------------------- 1 | 2 | var entity; 3 | $('textarea[name='+entityname+']').val($('textarea[name='+entityname+']').val() + ' ' + content); 4 | 5 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/utils/editable_selects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/utils/editable_selects.js -------------------------------------------------------------------------------- /vendors/simpletest/test/support/test1.php: -------------------------------------------------------------------------------- 1 | assertEqual(3,1+2, "pass1"); 5 | } 6 | } 7 | ?> 8 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /engine/schema/upgrades/2009010901.sql: -------------------------------------------------------------------------------- 1 | -- Add banned column refs #668 2 | ALTER TABLE `prefix_users_entity` ADD COLUMN `banned` enum ('yes', 'no') NOT NULL default 'no' AFTER `code`; 3 | 4 | -------------------------------------------------------------------------------- /mod/embed/views/default/embed/metatags.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js -------------------------------------------------------------------------------- /views/rss/page_elements/contentwrapper.php: -------------------------------------------------------------------------------- 1 | site->guid); 8 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /views/default/text/tos_view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/foaf/page_elements/contentwrapper.php: -------------------------------------------------------------------------------- 1 | getURL() .'">' . $vars['entity']->name . ''; 6 | 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /mod/embed/views/default/user/default/embed.php: -------------------------------------------------------------------------------- 1 | getURL() .'">' . $vars['entity']->name . ''; 6 | 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /mod/logbrowser/views/default/logbrowser/adminlinks.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /mod/embed/views/default/embed/link.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mod/embed/views/default/group/default/embed.php: -------------------------------------------------------------------------------- 1 | getURL() .'">' . $vars['entity']->title . ''; 6 | 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /mod/embed/views/default/object/default/embed.php: -------------------------------------------------------------------------------- 1 | getURL() .'">' . $vars['entity']->title . ''; 6 | 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /mod/members/views/default/members/online.php: -------------------------------------------------------------------------------- 1 | "; 8 | echo get_online_users(); 9 | echo ""; 10 | 11 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /views/default/admin/statistics.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /views/rss/navigation/pagination.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/json/canvas/default.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/general{$ext}.gif"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melvincarvalho/elgg/master/mod/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} 2 | -------------------------------------------------------------------------------- /mod/zaudio/readme.txt: -------------------------------------------------------------------------------- 1 | Notes: 2 | 3 | * A simple plugin to play mp3 files on the page 4 | * http://wpaudioplayer.com/license 5 | * http://wpaudioplayer.com/standalone 6 | 7 | Instructions: 8 | 9 | Drop into mod, enable in the admin planel and use. -------------------------------------------------------------------------------- /vendors/simpletest/test/test_with_parse_error.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/json/object/default.php: -------------------------------------------------------------------------------- 1 | send('Mám se fajn II'); 8 | 9 | echo $status ? 'OK' : 'ERROR'; 10 | -------------------------------------------------------------------------------- /engine/schema/upgrades/2009051401.sql: -------------------------------------------------------------------------------- 1 | -- Fix error in geocode cache table 2 | DELETE FROM `prefix_geocode_cache`; 3 | 4 | ALTER TABLE `prefix_geocode_cache` DROP KEY `location`; 5 | ALTER TABLE `prefix_geocode_cache` ADD UNIQUE KEY `location` (`location`); 6 | -------------------------------------------------------------------------------- /mod/blog/views/default/blog/categorylist.php: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 |
9 | 10 | -------------------------------------------------------------------------------- /mod/pages/views/default/pages/sidebar/tree.php: -------------------------------------------------------------------------------- 1 | 4 | 8 |
-------------------------------------------------------------------------------- /mod/tinymce/languages/en.php: -------------------------------------------------------------------------------- 1 | "Add/Remove editor", 10 | 11 | ); 12 | 13 | add_translation("en",$english); 14 | 15 | ?> -------------------------------------------------------------------------------- /views/default/input/captcha.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/default/object/widget.php: -------------------------------------------------------------------------------- 1 | site->guid); 10 | ?> -------------------------------------------------------------------------------- /mod/blog/views/default/blog/previewpane.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | 4 | 5 |

6 |
-------------------------------------------------------------------------------- /mod/categories/views/default/categories/settingsform.php: -------------------------------------------------------------------------------- 1 | $vars['categories'], 4 | 'internalname' => 'categories')); 5 | 6 | ?> 7 | -------------------------------------------------------------------------------- /views/default/group/default.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/default/input/urlshortener.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/ical/object/default.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/music{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/document.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/text{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/video.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/video{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/profile/views/default/profile/menu/adminwrapper.php: -------------------------------------------------------------------------------- 1 | {$adminlinks}

"; 8 | 9 | } 10 | 11 | ?> -------------------------------------------------------------------------------- /views/xml/xml-rpc/output.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/pdf{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/archive.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/archive{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/excel.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/excel{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/msword.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/word{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/text/directory.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/vcard{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/powerpoint.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/ppt{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/friends/languages/en.php: -------------------------------------------------------------------------------- 1 | "Displays some of your friends.", 9 | 10 | 11 | ); 12 | 13 | add_translation("en",$english); 14 | 15 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /views/default/text/about.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/default.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/application{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/vnd.ms-excel.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/excel{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/icon/application/vnd.ms-powerpoint.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/ppt{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/tinymce/views/default/tinymce/css.php: -------------------------------------------------------------------------------- 1 | blockquote { 2 | margin:10px; 3 | border:1px solid #efefef; 4 | padding:4px; 5 | } 6 | 7 | strong { 8 | font-weight:bold; 9 | } 10 | 11 | ul { 12 | list-style: disc; 13 | } 14 | 15 | ol { 16 | list-style: decimal; 17 | } -------------------------------------------------------------------------------- /views/js/object/default.php: -------------------------------------------------------------------------------- 1 | wwwroot}mod/file/graphics/icons/openoffice{$ext}.gif\" border=\"0\" />"; 9 | 10 | ?> -------------------------------------------------------------------------------- /mod/file/views/default/file/specialcontent/audio/mid.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mod/file/views/default/file/specialcontent/audio/mp3.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /engine/lib/upgrades/2008100701.php: -------------------------------------------------------------------------------- 1 | site->guid); 8 | ?> -------------------------------------------------------------------------------- /engine/schema/upgrades/2008102101.sql: -------------------------------------------------------------------------------- 1 | 2 | CREATE TABLE IF NOT EXISTS `prefix_users_sessions` ( 3 | `session` varchar(255) NOT NULL, 4 | `ts` int(11) unsigned NOT NULL default '0', 5 | `data` mediumblob, 6 | 7 | PRIMARY KEY `session` (`session`), 8 | KEY `ts` (`ts`) 9 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -------------------------------------------------------------------------------- /engine/schema/upgrades/2008112501.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `prefix_geocode_cache` ( 2 | id int(11) auto_increment, 3 | location varchar(128), 4 | `lat` varchar(20), 5 | `long` varchar(20), 6 | 7 | PRIMARY KEY (`id`), 8 | KEY `location` (`location`) 9 | 10 | ) ENGINE=MEMORY; -------------------------------------------------------------------------------- /mod/file/views/default/file/specialcontent/audio/mpeg.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mod/file/views/default/file/specialcontent/audio/x-wav.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /engine/lib/upgrades/2008101303.php: -------------------------------------------------------------------------------- 1 | guid, true, 'email'); 8 | } 9 | } 10 | 11 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /views/foaf/canvas/default.php: -------------------------------------------------------------------------------- 1 | guid); 12 | foreach ($serialised as $s) { 13 | echo $s; 14 | } -------------------------------------------------------------------------------- /views/php/canvas/default.php: -------------------------------------------------------------------------------- 1 | 9 |
10 | 13 |
-------------------------------------------------------------------------------- /views/default/canvas/default.php: -------------------------------------------------------------------------------- 1 | guid); 12 | foreach ($serialised as $s) { 13 | echo $s; 14 | } -------------------------------------------------------------------------------- /views/opendd/object/default.php: -------------------------------------------------------------------------------- 1 | guid); 12 | foreach ($serialised as $s) { 13 | echo $s; 14 | } -------------------------------------------------------------------------------- /views/opendd/site/default.php: -------------------------------------------------------------------------------- 1 | guid); 13 | foreach ($serialised as $s) { 14 | echo $s; 15 | } -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /views/default/welcome.php: -------------------------------------------------------------------------------- 1 | addFile('test_with_parse_error.php'); 8 | $test->run(new HtmlReporter()); 9 | ?> -------------------------------------------------------------------------------- /views/php/api/output.php: -------------------------------------------------------------------------------- 1 | export(); 15 | 16 | echo serialize($export); -------------------------------------------------------------------------------- /actions/usersettings/save.php: -------------------------------------------------------------------------------- 1 | site->guid); 10 | enable_plugin('htmlawed', $CONFIG->site->guid); 11 | ?> -------------------------------------------------------------------------------- /views/opendd/pageshells/pageshell.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | 18 | -------------------------------------------------------------------------------- /vendors/simpletest/test/bad_test_suite.php: -------------------------------------------------------------------------------- 1 | TestSuite('Two bad test cases'); 7 | $this->addFile(dirname(__FILE__) . '/support/empty_test_file.php'); 8 | } 9 | } 10 | ?> -------------------------------------------------------------------------------- /engine/schema/upgrades/2008111901.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `prefix_private_settings` ( 2 | `id` INT NOT NULL auto_increment, 3 | `entity_guid` INT NOT NULL , 4 | `name` VARCHAR( 128 ) NOT NULL , 5 | `value` TEXT NOT NULL , 6 | PRIMARY KEY ( `id` ) , 7 | UNIQUE KEY ( `entity_guid` , `name` ) 8 | ) ENGINE = MYISAM DEFAULT CHARSET=utf8; -------------------------------------------------------------------------------- /views/default/output/iframe.php: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /views/default/canvas/layouts/one_column.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 | 15 | 16 | 17 |
-------------------------------------------------------------------------------- /views/xml/api/output.php: -------------------------------------------------------------------------------- 1 | export(); 15 | 16 | echo serialise_object_to_xml($export, "elgg"); -------------------------------------------------------------------------------- /mod/profile/views/default/river/user/default/profileupdate.php: -------------------------------------------------------------------------------- 1 | subject_guid); // $statement->getSubject(); 4 | 5 | $url = "getURL()}\">{$performed_by->name}"; 6 | $string = sprintf(elgg_echo("profile:river:update"),$url); 7 | 8 | ?> 9 | 10 | -------------------------------------------------------------------------------- /mod/reportedcontent/views/default/reportedcontent/user_report.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | wwwroot . "mod/reportedcontent/add.php?address='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)\">" . elgg_echo('reportedcontent:report') . ""; 5 | ?> 6 |

-------------------------------------------------------------------------------- /views/default/admin/main.php: -------------------------------------------------------------------------------- 1 | " . elgg_view('output/longtext', array('value' => elgg_echo("admin:description"))) . "

"; 13 | -------------------------------------------------------------------------------- /views/default/canvas/layouts/edit_layout.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 | 14 | 15 | 16 |
-------------------------------------------------------------------------------- /views/opendd/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 10 | foreach($entities as $entity) { 11 | echo elgg_view_entity($entity); 12 | } 13 | } -------------------------------------------------------------------------------- /mod/search/views/default/search/layout.php: -------------------------------------------------------------------------------- 1 | , The MITRE Corporation 8 | * @link http://elgg.org/ 9 | */ 10 | 11 | echo elgg_view_layout('two_column_left_sidebar', '', $vars['body']); -------------------------------------------------------------------------------- /views/rss/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 11 | foreach($entities as $entity) { 12 | echo elgg_view_entity($entity); 13 | } 14 | } -------------------------------------------------------------------------------- /views/default/output/radio.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/default/output/checkboxes.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 | 17 |

-------------------------------------------------------------------------------- /views/ical/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 13 | foreach($entities as $entity) 14 | echo elgg_view_entity($entity); 15 | } -------------------------------------------------------------------------------- /mod/riverdashboard/views/default/riverdashboard/js.php: -------------------------------------------------------------------------------- 1 | 5 | $(document).ready(function() { 6 | 7 | var href = $("div.river_pagination a").attr('href'); 8 | href = href.replace("callback=true","callback="); 9 | $("div.river_pagination a").attr('href',href); 10 | 11 | }); 12 | 13 | 14 | */ 15 | 16 | ?> -------------------------------------------------------------------------------- /views/default/output/date.php: -------------------------------------------------------------------------------- 1 | 86400) { 16 | echo date("F j, Y",$vars['value']); 17 | } -------------------------------------------------------------------------------- /views/opendd/export/entity.php: -------------------------------------------------------------------------------- 1 | guid); 14 | foreach ($serialised as $s) { 15 | echo $s; 16 | } -------------------------------------------------------------------------------- /engine/handlers/action_handler.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/php/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 13 | foreach($entities as $entity) { 14 | echo elgg_view_entity($entity); 15 | } 16 | } -------------------------------------------------------------------------------- /mod/file/views/default/file/specialcontent/image/default.php: -------------------------------------------------------------------------------- 1 | smallthumb) { 4 | 5 | echo "

getGUID()}\">getGUID()}&size=large\" border=\"0\" />

"; 6 | 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /mod/pages/pagesTree.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/failsafe/messages/messages/message.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 | 17 |

-------------------------------------------------------------------------------- /views/foaf/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 12 | foreach($entities as $entity) { 13 | echo elgg_view_entity($entity); 14 | } 15 | } -------------------------------------------------------------------------------- /views/json/search/entity_list.php: -------------------------------------------------------------------------------- 1 | 0) { 13 | foreach($entities as $entity) { 14 | echo elgg_view_entity($entity); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /views/default/object/object.php: -------------------------------------------------------------------------------- 1 | 15 |
16 |

title; ?>

17 |

description; ?>

18 |
-------------------------------------------------------------------------------- /views/json/messages/exceptions/exception.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /mod/pages/views/default/pages/sidebar/starter.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | -------------------------------------------------------------------------------- /views/default/output/text.php: -------------------------------------------------------------------------------- 1 | " . elgg_echo("welcome_message") . "

"; 13 | $area1 .= elgg_view("account/forms/login"); 14 | 15 | //draw to screen 16 | echo $body; -------------------------------------------------------------------------------- /actions/logout.php: -------------------------------------------------------------------------------- 1 | " . autop(elgg_echo("installation:settings:description")) . "

"; 13 | 14 | echo elgg_view("settings/system",array("action" => "action/systemsettings/install")); -------------------------------------------------------------------------------- /views/failsafe/settings/install.php: -------------------------------------------------------------------------------- 1 | " . autop(elgg_echo("installation:settings:description")) . "

"; 13 | 14 | echo elgg_view("settings/system",array("action" => "action/systemsettings/install")); -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/default/messages/errors/error.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 | $vars['object'])); ?> 17 |

-------------------------------------------------------------------------------- /views/opendd/export/relationship.php: -------------------------------------------------------------------------------- 1 | addElement($r->export()); 16 | 17 | //echo $odd; 18 | 19 | echo $r->export(); 20 | -------------------------------------------------------------------------------- /actions/friends/editcollection.php: -------------------------------------------------------------------------------- 1 | spotlightclosed = $closed; 21 | exit; -------------------------------------------------------------------------------- /mod/reportedcontent/views/default/reportedcontent/owner_block.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /views/default/messages/messages/message.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 | $vars['object'])); ?> 17 |

-------------------------------------------------------------------------------- /views/default/output/longtext.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 14 | 15 | -------------------------------------------------------------------------------- /engine/schema/upgrades/2008101701.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `prefix_system_log` ADD COLUMN `owner_guid` int(11) NOT NULL AFTER `performed_by_guid`; 2 | 3 | ALTER TABLE `prefix_system_log` DROP KEY `owner_guid`; 4 | ALTER TABLE `prefix_system_log` ADD KEY `owner_guid` (`owner_guid`); 5 | 6 | ALTER TABLE `prefix_system_log` DROP KEY `river_key`; 7 | ALTER TABLE `prefix_system_log` ADD KEY `river_key` (`object_type`, `object_subtype`, `event`, `access_id`); 8 | -------------------------------------------------------------------------------- /mod/diagnostics/views/default/diagnostics/forms/download.php: -------------------------------------------------------------------------------- 1 | elgg_echo('diagnostics:download'))); 11 | echo elgg_view('input/form', array('body' => $form_body, 'action' => $CONFIG->url . "action/diagnostics/download")); 12 | ?> -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /views/default/group/search/startblurb.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 | 16 |
17 | -------------------------------------------------------------------------------- /views/default/page_elements/contentwrapper.php: -------------------------------------------------------------------------------- 1 | 13 |
20 | 23 |
-------------------------------------------------------------------------------- /views/opendd/export/metadata.php: -------------------------------------------------------------------------------- 1 | addElement($m->export()); 17 | 18 | //echo $odd; 19 | 20 | echo $m->export(); -------------------------------------------------------------------------------- /views/xml/pageshells/pageshell.php: -------------------------------------------------------------------------------- 1 | \n"; 16 | echo $vars['body']; -------------------------------------------------------------------------------- /entities/list.php: -------------------------------------------------------------------------------- 1 | " . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:description"))) . "

"; 14 | -------------------------------------------------------------------------------- /views/js/pageshells/pageshell.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | foreach($vars['friends'] as $friend) { 16 | echo elgg_view_entity($friend); 17 | } 18 | } -------------------------------------------------------------------------------- /views/default/user/search/startblurb.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 19 |
20 | -------------------------------------------------------------------------------- /views/default/river/dashboard.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 0)) { 16 | foreach ($river as $r) { 17 | echo $r; 18 | } 19 | } else { 20 | echo elgg_echo('river:widget:noactivity'); 21 | } 22 | ?> 23 |
-------------------------------------------------------------------------------- /vendors/simpletest/test/autorun_test.php: -------------------------------------------------------------------------------- 1 | addFile(dirname(__FILE__) . '/support/test1.php'); 9 | $this->assertEqual($tests->getSize(), 1); 10 | } 11 | } 12 | 13 | ?> -------------------------------------------------------------------------------- /views/default/output/calendar.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.com/ 11 | */ 12 | 13 | ?> 14 | 15 |

16 | 21 |

-------------------------------------------------------------------------------- /mod/messages/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /views/ical/pageshells/pageshell.php: -------------------------------------------------------------------------------- 1 | 16 | BEGIN:VCALENDAR 17 | VERSION:2.0 18 | PRODID:-//Curverider Ltd//NONSGML Elgg //EN 19 | 20 | END:VCALENDAR 21 | -------------------------------------------------------------------------------- /mod/embed/upload.php: -------------------------------------------------------------------------------- 1 | $entities, 14 | 'internalname' => $internalname, 15 | )); 16 | 17 | ?> -------------------------------------------------------------------------------- /views/json/api/output.php: -------------------------------------------------------------------------------- 1 | export(); 15 | 16 | global $jsonexport; 17 | 18 | // with api calls, we don't want extra baggage found in other json views 19 | // so we skip the associative array 20 | $jsonexport = $export; -------------------------------------------------------------------------------- /mod/custom_index/languages/en.php: -------------------------------------------------------------------------------- 1 | "Latest bookmarks", 6 | 'custom:groups' => "Latest groups", 7 | 'custom:files' => "Latest files", 8 | 'custom:blogs' => "Latest blog posts", 9 | 'custom:members' => "Newest members", 10 | 'custom:nofiles' => "There are no files yet", 11 | 'custom:nogroups' => "There are no files yet", 12 | 13 | ); 14 | 15 | add_translation("en",$english); 16 | 17 | ?> -------------------------------------------------------------------------------- /mod/thewire/views/default/thewire/notfound.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.com/ 11 | */ 12 | 13 | ?> 14 | 15 |

16 | 21 |

-------------------------------------------------------------------------------- /mod/twitterservice/languages/en.php: -------------------------------------------------------------------------------- 1 | 'Twitter Service', 4 | 'twitterservice:postwire' => 'By setting the following option all messages you post to The Wire will be sent to your twitter account. Do you want to post your messages from The Wire to Twitter?', 5 | 'twitterservice:twittername' => 'Twitter username', 6 | 'twitterservice:twitterpass' => 'Twitter password', 7 | ); 8 | 9 | add_translation("en",$english); 10 | ?> -------------------------------------------------------------------------------- /mod/groups/views/default/river/object/group/create.php: -------------------------------------------------------------------------------- 1 | getSubject(); 5 | $object = $statement->getObject(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("group:river:created"),$url) . " "; 9 | $string .= "getURL() . "\">" . elgg_echo("group:river:create") . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/pages/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/thewire/readme.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * Elgg the wire 3 | * 4 | * @package ElggTheWire 5 | * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 6 | * @author Curverider 7 | * @copyright Curverider Ltd 2008-2009 8 | * @link http://elgg.com/ 9 | */ 10 | 11 | This is a twitter style, short message service that allows users to post notes to the wire. 12 | 13 | Install: Just drop it into the mod directory and that should be it. -------------------------------------------------------------------------------- /views/default/basic_elements/welcome.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 |

"{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>

17 | 18 | -------------------------------------------------------------------------------- /views/default/site/default.php: -------------------------------------------------------------------------------- 1 | url) { 15 | forward($site); 16 | } else { 17 | forward(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /views/php/export/metadata.php: -------------------------------------------------------------------------------- 1 | getExportableValues(); 16 | 17 | foreach ($exportable_values as $v) { 18 | $export->$v = $m->$v; 19 | } 20 | 21 | echo serialize($export); -------------------------------------------------------------------------------- /engine/handlers/pagehandler.php: -------------------------------------------------------------------------------- 1 | 'execute', 'value' => elgg_echo('diagnostics:test:executeall'))); 11 | 12 | echo elgg_view('input/form', array('action' => $vars['url'] . "pg/diagnostics/tests/all", 'body' => $form_body)); 13 | ?> -------------------------------------------------------------------------------- /views/json/pageshells/pageshell.php: -------------------------------------------------------------------------------- 1 | getExportableValues(); 16 | 17 | foreach ($exportable_values as $v) { 18 | $export->$v = $entity->$v; 19 | } 20 | 21 | echo serialize($export); 22 | -------------------------------------------------------------------------------- /mod/messages/views/default/widgets/messages/view.php: -------------------------------------------------------------------------------- 1 | 2 | You have no new messages."; 8 | else { 9 | echo "

" . $num_messages . " new message(s).

"; 10 | echo "username ."\">check them out"; 11 | } 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /views/default/output/email.php: -------------------------------------------------------------------------------- 1 | ". htmlentities($vars['value'], ENT_QUOTES, 'UTF-8') .""; 17 | } -------------------------------------------------------------------------------- /views/default/usersettings/form.php: -------------------------------------------------------------------------------- 1 | " . elgg_view("usersettings/user") . " "; 10 | $form_body .= "

" . elgg_view('input/submit', array('value' => elgg_echo('save'))) . "

"; 11 | 12 | echo elgg_view('input/form', array('action' => "{$vars['url']}action/usersettings/save", 'body' => $form_body)); -------------------------------------------------------------------------------- /views/php/export/relationship.php: -------------------------------------------------------------------------------- 1 | getExportableValues(); 16 | 17 | foreach ($exportable_values as $v) { 18 | $export->$v = $r->$v; 19 | } 20 | 21 | echo serialize($export); -------------------------------------------------------------------------------- /mod/bookmarks/views/default/river/object/bookmarks/annotate.php: -------------------------------------------------------------------------------- 1 | getSubject(); 5 | $object = $statement->getObject(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("bookmarks:river:annotate"),$url) . " "; 9 | $string .= "getURL() . "\">" . elgg_echo("bookmarks:river:item") . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/diagnostics/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendors/simpletest/test/support/spl_examples.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engine/schema/upgrades/2008120501.sql: -------------------------------------------------------------------------------- 1 | -- Modify field length in private settings (for people who upgraded while #611 present) 2 | ALTER TABLE `prefix_private_settings` MODIFY `name` varchar(128) NOT NULL; 3 | 4 | -- While we're at it, add some more keys 5 | ALTER TABLE `prefix_private_settings` DROP KEY `name`; 6 | ALTER TABLE `prefix_private_settings` ADD KEY `name` (`name`); 7 | 8 | ALTER TABLE `prefix_private_settings` DROP KEY `value`; 9 | ALTER TABLE `prefix_private_settings` ADD KEY `value` (`value` (50)); -------------------------------------------------------------------------------- /mod/externalpages/views/default/expages/css.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.org/ 11 | */ 12 | 13 | ?> 14 | 15 | /* IE6 */ 16 | * html #front_left_tbl { width:676px !important; } 17 | * html #front_right_tbl { width:676px !important; } -------------------------------------------------------------------------------- /mod/file/views/default/file/menu.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |

15 | 16 |

-------------------------------------------------------------------------------- /mod/logbrowser/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |

19 | 20 |
21 | -------------------------------------------------------------------------------- /views/default/dashboard/blurb.php: -------------------------------------------------------------------------------- 1 | 7 | * @link http://elgg.com/ 8 | * 9 | * @uses $vars['entity'] 10 | */ 11 | ?> 12 | 13 |
14 |

15 | 20 |

21 |

22 | 23 |

24 |
-------------------------------------------------------------------------------- /views/default/entities/entity_listing.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 | 14 |
15 | 20 |
21 |
22 | 27 |
28 | 29 |
30 | -------------------------------------------------------------------------------- /mod/blog/views/default/river/object/blog/annotate.php: -------------------------------------------------------------------------------- 1 | getSubject(); 5 | $object = $statement->getObject(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("blog:river:posted"),$url) . " "; 9 | $string .= elgg_echo("blog:river:annotate:create") . " getURL() . "\">" . $object->title . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/embed/languages/en.php: -------------------------------------------------------------------------------- 1 | 'Embed / upload media', 6 | 7 | 'embed:instructions' => 'Click on any file to embed it into your content.', 8 | 9 | 'embed:media' => 'Embed media', 10 | 'upload:media' => 'Upload media', 11 | 12 | 'embed:file:required' => 'No file upload facilities were found. The system administrator may need to upload the file plugin or similar.', 13 | 14 | ); 15 | 16 | add_translation("en",$english); 17 | 18 | ?> -------------------------------------------------------------------------------- /mod/groups/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/css/blank.css: -------------------------------------------------------------------------------- 1 | html, body {height:98%} 2 | body { 3 | background-color: #FFFFFF; 4 | font-family: Verdana, Arial, Helvetica, sans-serif; 5 | font-size: 10px; 6 | scrollbar-3dlight-color: #F0F0EE; 7 | scrollbar-arrow-color: #676662; 8 | scrollbar-base-color: #F0F0EE; 9 | scrollbar-darkshadow-color: #DDDDDD; 10 | scrollbar-face-color: #E0E0DD; 11 | scrollbar-highlight-color: #F0F0EE; 12 | scrollbar-shadow-color: #F0F0EE; 13 | scrollbar-track-color: #F5F5F5; 14 | } 15 | -------------------------------------------------------------------------------- /views/default/ajax/loader.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | END; 16 | 17 | $loader = str_replace("\n","",$loader); 18 | $loader = str_replace("\r","",$loader); 19 | 20 | if (isset($vars['slashes']) && $vars['slashes'] == true) { 21 | $loader = addslashes($loader); 22 | } 23 | 24 | echo $loader; -------------------------------------------------------------------------------- /mod/friends/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/garbagecollector/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mod/groups/views/default/groups/closedmembership.php: -------------------------------------------------------------------------------- 1 | 13 |
14 |

15 |
-------------------------------------------------------------------------------- /mod/groups/views/default/river/group/create.php: -------------------------------------------------------------------------------- 1 | subject_guid); // $statement->getSubject(); 4 | $object = get_entity($vars['item']->object_guid); 5 | $objecturl = $object->getURL(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("groups:river:member"),$url) . " "; 9 | $string .= " getURL() . "\">" . $object->name . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/logrotate/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /views/default/admin/main_opt/site.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |

13 |


14 | ">

15 |
-------------------------------------------------------------------------------- /views/default/admin/main_opt/user.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |

13 |


14 | ">

15 |
-------------------------------------------------------------------------------- /mod/messageboard/readme.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * Elgg message board 3 | * 4 | * @package ElggMessageBoard 5 | * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 6 | * @author Dave Tosh 7 | * @copyright Curverider Ltd 2008-2009 8 | * @link http://elgg.com/ 9 | */ 10 | 11 | This plugin provides Elgg profiles, both users and groups, with a basic message board for comments and media. 12 | 13 | Install: Just drop it into the mod directory and that should be it. 14 | -------------------------------------------------------------------------------- /mod/pages/views/default/pages/menu.php: -------------------------------------------------------------------------------- 1 | 12 |

13 | 14 |

-------------------------------------------------------------------------------- /mod/groups/views/default/river/object/groupforumtopic/update.php: -------------------------------------------------------------------------------- 1 | getSubject(); 5 | $object = $statement->getObject(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("groupforum:river:updated"),$url) . " "; 9 | $string .= elgg_echo("groupforum:river:update") . " | getURL() . "\">" . $object->title . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/groups/views/default/settings/groups/edit.php: -------------------------------------------------------------------------------- 1 | hidden_groups; 3 | if (!$hidden_groups) $hidden_groups = 'no'; 4 | ?> 5 |

6 | 7 | 8 | 'params[hidden_groups]', 11 | 'options_values' => array( 12 | 'no' => elgg_echo('option:no'), 13 | 'yes' => elgg_echo('option:yes') 14 | ), 15 | 'value' => $hidden_groups 16 | )); 17 | ?> 18 |

-------------------------------------------------------------------------------- /mod/captcha/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/htmlawed/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mod/riverdashboard/views/default/riverdashboard/welcome.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.com/ 11 | * 12 | */ 13 | 14 | ?> 15 |
16 |

name); ?>

17 |
-------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{ 2 | title:"Insert emotion", 3 | desc:"Emotions", 4 | cool:"Cool", 5 | cry:"Cry", 6 | embarassed:"Embarassed", 7 | foot_in_mouth:"Foot in mouth", 8 | frown:"Frown", 9 | innocent:"Innocent", 10 | kiss:"Kiss", 11 | laughing:"Laughing", 12 | money_mouth:"Money mouth", 13 | sealed:"Sealed", 14 | smile:"Smile", 15 | surprised:"Surprised", 16 | tongue_out:"Tongue out", 17 | undecided:"Undecided", 18 | wink:"Wink", 19 | yell:"Yell" 20 | }); -------------------------------------------------------------------------------- /mod/uservalidationbyemail/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /views/default/canvas_header/submenu_group.php: -------------------------------------------------------------------------------- 1 | " . $vars['submenu'] . ""; 18 | echo "
{$submenu}
"; 19 | } -------------------------------------------------------------------------------- /views/default/entities/gallery_listing.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | 15 |
16 | 17 | 22 | 23 |
24 |
25 | 30 |
31 | 32 |
-------------------------------------------------------------------------------- /views/json/export/relationship.php: -------------------------------------------------------------------------------- 1 | getExportableValues(); 17 | 18 | foreach ($exportable_values as $v) { 19 | $export->$v = $r->$v; 20 | } 21 | 22 | global $jsonexport; 23 | $jsonexport['relationships'][] = $export; -------------------------------------------------------------------------------- /mod/blog/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/bookmarks/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/embed/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/profile/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/tinymce/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /account/forgotten_password.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/groups/actions/delete.php: -------------------------------------------------------------------------------- 1 | delete()) 10 | system_message(elgg_echo('group:deleted')); 11 | else 12 | register_error(elgg_echo('group:notdeleted')); 13 | } 14 | else 15 | register_error(elgg_echo('group:notdeleted')); 16 | 17 | $url_name = $_SESSION['user']->username; 18 | forward("{$vars['url']}pg/groups/member/{$url_name}"); 19 | ?> -------------------------------------------------------------------------------- /mod/groups/views/default/groups/side_menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod/riverdashboard/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /views/default/export/metadata.php: -------------------------------------------------------------------------------- 1 | entity_guid); 14 | ?> 15 |
16 |

getURL() . "\">GUID:{$m->entity_guid}"; else echo "GUID:".$m->entity_guid; 17 | ?>: name; ?> value; ?>

18 |
-------------------------------------------------------------------------------- /actions/user/passwordreset.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.com/ 11 | */ 12 | 13 | ?> 14 | 15 |

16 | 17 |

-------------------------------------------------------------------------------- /mod/categories/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/invitefriends/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/search/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendors/simpletest/test/all_tests.php: -------------------------------------------------------------------------------- 1 | TestSuite('All tests for SimpleTest ' . SimpleTest::getVersion()); 7 | $this->addFile(dirname(__FILE__) . '/unit_tests.php'); 8 | $this->addFile(dirname(__FILE__) . '/shell_test.php'); 9 | $this->addFile(dirname(__FILE__) . '/live_test.php'); 10 | $this->addFile(dirname(__FILE__) . '/acceptance_test.php'); 11 | } 12 | } 13 | ?> -------------------------------------------------------------------------------- /views/default/admin/user_opt/adduser.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 16 | -------------------------------------------------------------------------------- /views/default/usersettings/main_opt/user.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |

13 |


14 | ">

15 |
-------------------------------------------------------------------------------- /views/failsafe/messages/list.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | foreach($vars['object'] as $register => $list ) { 16 | echo elgg_view("messages/{$register}/list", array('object' => $list)); 17 | } 18 | } -------------------------------------------------------------------------------- /views/json/export/metadata.php: -------------------------------------------------------------------------------- 1 | getExportableValues(); 16 | 17 | foreach ($exportable_values as $v) { 18 | $export->$v = $m->$v; 19 | } 20 | 21 | global $jsonexport; 22 | $jsonexport['metadata'][] = $entity; 23 | // echo json_encode($export); -------------------------------------------------------------------------------- /mod/categories/languages/en.php: -------------------------------------------------------------------------------- 1 | 'Categories', 6 | 'categories:settings' => 'Set site categories', 7 | 'categories:explanation' => 'To set some predefined site-wide categories that will be used throughout your system, enter them below, separated with commas. Compatible tools will then display them when the user creates or edits content.', 8 | 'categories:save:success' => 'Site categories were successfully saved.', 9 | 10 | ); 11 | 12 | add_translation("en",$english); 13 | 14 | ?> -------------------------------------------------------------------------------- /mod/profile/views/default/river/user/default/profileiconupdate.php: -------------------------------------------------------------------------------- 1 | subject_guid); // $statement->getSubject(); 4 | 5 | $url = "getURL()}\">{$performed_by->name}"; 6 | $string = sprintf(elgg_echo("profile:river:iconupdate"),$url); 7 | $string .= "
"; 8 | $string .= elgg_view("profile/icon",array('entity' => $performed_by, 'size' => 'small', 'override' => 'true')); 9 | $string .= "
"; 10 | ?> 11 | 12 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /mod/tinymce/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create('tinymce.plugins.Print',{init:function(ed,url){ed.addCommand('mcePrint',function(){ed.getWin().print();});ed.addButton('print',{title:'print.print_desc',cmd:'mcePrint'});},getInfo:function(){return{longname:'Print',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',version:tinymce.majorVersion+"."+tinymce.minorVersion};}});tinymce.PluginManager.add('print',tinymce.plugins.Print);})(); -------------------------------------------------------------------------------- /mod/twitter/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/twitterservice/vendors/twitter/load.php: -------------------------------------------------------------------------------- 1 | load($withFriends); 10 | 11 | ?> 12 | 13 |
    14 | status as $status): ?> 15 |
  • user->name?>: 16 | text?> 17 | at created_at))?> 18 |
  • 19 | 20 |
21 | -------------------------------------------------------------------------------- /views/default/input/securitytoken.php: -------------------------------------------------------------------------------- 1 | '__elgg_token', 'value' => $token)); 17 | echo elgg_view('input/hidden', array('internalname' => '__elgg_ts', 'value' => $ts)); 18 | -------------------------------------------------------------------------------- /views/default/messages/list.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | foreach($vars['object'] as $register => $list ) { 16 | echo elgg_view("messages/{$register}/list", array('object' => $list)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /views/failsafe/input/securitytoken.php: -------------------------------------------------------------------------------- 1 | '__elgg_token', 'value' => $token)); 17 | echo elgg_view('input/hidden', array('internalname' => '__elgg_ts', 'value' => $ts)); 18 | -------------------------------------------------------------------------------- /mod/blog/views/default/river/object/blog/update.php: -------------------------------------------------------------------------------- 1 | subject_guid); // $statement->getSubject(); 4 | $object = get_entity($vars['item']->object_guid); 5 | $url = $object->getURL(); 6 | 7 | $url = "getURL()}\">{$performed_by->name}"; 8 | $string = sprintf(elgg_echo("blog:river:updated"),$url) . " "; 9 | $string .= elgg_echo("blog:river:update") . " getURL() . "\">" . $object->title . ""; 10 | 11 | ?> 12 | 13 | -------------------------------------------------------------------------------- /mod/categories/views/default/categories/settings.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |

9 | 10 |

11 | 12 | 13 | $vars['url'] . 'action/categories/save', 19 | 'method' => 'post', 20 | 'body' => elgg_view('categories/settingsform',$vars) 21 | ) 22 | ); 23 | 24 | ?> 25 | 26 |
-------------------------------------------------------------------------------- /mod/crontrigger/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mod/messageboard/views/default/river/object/messageboard/create.php: -------------------------------------------------------------------------------- 1 | subject_guid); // $statement->getSubject(); 4 | $performed_on = get_entity($vars['item']->object_guid); 5 | 6 | $url = "getURL()}\">{$performed_by->name}"; 7 | $string = sprintf(elgg_echo("messageboard:river:added"),$url) . " getURL()}\">" . $performed_on->name . "'s " . elgg_echo("messageboard:river:messageboard"); 8 | 9 | 10 | echo $string; 11 | 12 | ?> -------------------------------------------------------------------------------- /mod/notifications/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mod/pages/views/default/widgets/pages/edit.php: -------------------------------------------------------------------------------- 1 | 9 | * @copyright Curverider Ltd 2008-2010 10 | * @link http://elgg.com/ 11 | */ 12 | 13 | ?> 14 |

15 | 16 | 17 |

--------------------------------------------------------------------------------