├── .gitattributes ├── .gitignore ├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ ├── tweet.php │ └── user_agents.php ├── controllers │ ├── admin │ │ ├── album.php │ │ ├── home.php │ │ ├── landing.php │ │ ├── log.php │ │ └── users.php │ ├── album.php │ ├── api │ │ ├── connection.php │ │ ├── landing.php │ │ ├── profile.php │ │ ├── status.php │ │ └── tw_controller.php │ ├── chat.php │ ├── chatroom.php │ ├── connection.php │ ├── contacts.php │ ├── home.php │ ├── index.html │ ├── landing.php │ ├── log.php │ ├── pad.php │ ├── poke.php │ ├── profile.php │ ├── search.php │ ├── setting.php │ ├── sms.php │ ├── status.php │ ├── tw_controller.php │ └── world.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ ├── index.html │ │ └── site_lang.php │ └── french │ │ ├── index.html │ │ └── site_lang.php ├── libraries │ ├── Facebook.php │ ├── Lightopenid.php │ ├── MY_Config.php │ ├── MY_Language.php │ ├── base_facebook.php │ ├── fb_ca_chain_bundle.crt │ ├── index.html │ └── tweet.php ├── logs │ └── index.html ├── models │ ├── functions.php │ ├── index.html │ └── twadmin.php ├── third_party │ └── index.html └── views │ ├── 404.php │ ├── about_view.php │ ├── account_setting_view.php │ ├── admin │ ├── age_log_view.php │ ├── footer_view.php │ ├── gender_log_view.php │ ├── header_view.php │ ├── home_view.php │ ├── login_log_view.php │ ├── login_view.php │ ├── register_log_view.php │ ├── resend_activation_mail_view.php │ ├── status_log_view.php │ ├── tophituser_log_view.php │ ├── toplogin_log_view.php │ ├── toppages_log_view.php │ ├── topvieweduser_log_view.php │ ├── trend_log_view.php │ ├── user_view.php │ └── users_view.php │ ├── album_view.php │ ├── alert_view.php │ ├── api_view.php │ ├── chatroom_view.php │ ├── contacts_view.php │ ├── dashboard_view.php │ ├── developers_view.php │ ├── dream_view.php │ ├── edit_profile_view.php │ ├── editworld_view.php │ ├── existing_contacts_view.php │ ├── fbregister_view.php │ ├── followers_view.php │ ├── followings_view.php │ ├── footer_view.php │ ├── forgot_view.php │ ├── friend_suggession_view.php │ ├── friends_view.php │ ├── header_view.php │ ├── home_view.php │ ├── import_view.php │ ├── index.html │ ├── index_footer_view.php │ ├── index_header_view.php │ ├── index_view.php │ ├── living_view.php │ ├── login_view.php │ ├── menu_view.php │ ├── mutual_friends_view.php │ ├── nonexting_contacts_view.php │ ├── openidregister_view.php │ ├── pad_compose_view.php │ ├── pad_view.php │ ├── password_setting_view.php │ ├── photo_view.php │ ├── poke_view.php │ ├── privacy_view.php │ ├── profile_picture_crop_view.php │ ├── profile_picture_upload_view.php │ ├── profile_view.php │ ├── public_profile_view.php │ ├── public_search_view.php │ ├── register_view.php │ ├── search_view.php │ ├── setting_view.php │ ├── snaps_view.php │ ├── status_view.php │ ├── terms_view.php │ ├── themes_view.php │ ├── tour_view.php │ └── twitterregister_view.php ├── aulib ├── ajaxfileupload.css ├── ajaxfileupload.js ├── jquery.js └── loading.gif ├── cplib ├── .htaccess ├── arrow.gif ├── cross.gif ├── hs.png └── jscolor.js ├── css ├── Jcrop.gif ├── arrow.gif ├── chat.css ├── jquery.Jcrop.css ├── jquery.autocomplete.css ├── jquery.jqplot.css ├── jquery.validity.css ├── landing.css ├── screen.css ├── screen_ie.css ├── themes │ ├── admin-default.css │ └── default.css ├── thickbox.css └── tipsy.css ├── images ├── Desktop_.ini ├── album_pictures │ ├── full │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ └── thumb │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg ├── clouds - Copy.png ├── clouds.png ├── clouds.psd ├── facebook.png ├── friends.png ├── gmail.png ├── landing_bg.png ├── logo.jpg ├── logo.png ├── pillar.png ├── profile_pictures │ ├── full │ │ ├── arundavid.jpg │ │ ├── ashokraj.jpg │ │ ├── default.jpg │ │ ├── melwynjensen.jpg │ │ └── smartmohi.jpg │ └── thumb │ │ ├── arundavid.jpg │ │ ├── ashokraj.jpg │ │ ├── default.jpg │ │ ├── melwynjensen.jpg │ │ └── smartmohi.jpg ├── themes │ └── default │ │ ├── alert_close.png │ │ ├── header_bg.png │ │ ├── logo.png │ │ ├── right-arrow.png │ │ ├── search-zoom-icon.png │ │ ├── status_comment.png │ │ ├── status_delete.png │ │ ├── status_image.png │ │ ├── status_like.png │ │ ├── status_link.png │ │ ├── status_time.png │ │ ├── status_unlike.png │ │ ├── status_video.png │ │ └── tipsy.gif ├── twitter.png ├── world │ ├── 1.png │ ├── 2.png │ └── 3.png └── yahoo.png ├── index.php ├── js ├── Desktop_.ini ├── chat.js ├── jqplot.barRenderer.min.js ├── jqplot.canvasAxisLabelRenderer.js ├── jqplot.canvasTextRenderer.js ├── jqplot.categoryAxisRenderer.min.js ├── jqplot.cursor.js ├── jqplot.dateAxisRenderer.js ├── jqplot.highlighter.js ├── jqplot.pieRenderer.min.js ├── jquery-1.4.4.min.js ├── jquery.Jcrop.min.js ├── jquery.address-1.4.min.js ├── jquery.ajaxQueue.js ├── jquery.autocomplete.min.js ├── jquery.autocomplete.pack.js ├── jquery.bgiframe.min.js ├── jquery.elastic.js ├── jquery.jqplot.js ├── jquery.tipsy.js ├── jquery.toggleval.js ├── jquery.validity.js ├── script.js ├── statusfunctions.js └── thickbox-compressed.js ├── license.txt ├── public ├── chat.php ├── functions │ └── functions.php ├── geturldata.php ├── grablib │ ├── autoupdate.php │ ├── conf │ │ ├── abv.conf │ │ ├── aol.conf │ │ ├── apropo.conf │ │ ├── atlas.conf │ │ ├── aussiemail.conf │ │ ├── azet.conf │ │ ├── badoo.conf │ │ ├── bebo.conf │ │ ├── bigstring.conf │ │ ├── bookcrossing.conf │ │ ├── bordermail.conf │ │ ├── brazencareerist.conf │ │ ├── canoe.conf │ │ ├── care2.conf │ │ ├── clevergo.conf │ │ ├── cyworld.conf │ │ ├── doramail.conf │ │ ├── eons.conf │ │ ├── evite.conf │ │ ├── facebook.conf │ │ ├── faces.conf │ │ ├── famiva.conf │ │ ├── fastmail.conf │ │ ├── fdcareer.conf │ │ ├── flickr.conf │ │ ├── flingr.conf │ │ ├── flixster.conf │ │ ├── fm5.conf │ │ ├── freemail.conf │ │ ├── friendfeed.conf │ │ ├── friendster.conf │ │ ├── gawab.conf │ │ ├── gmail.conf │ │ ├── gmx_net.conf │ │ ├── graffiti.conf │ │ ├── hi5.conf │ │ ├── hotmail.conf │ │ ├── hushmail.conf │ │ ├── hyves.conf │ │ ├── inbox.conf │ │ ├── india.conf │ │ ├── indiatimes.conf │ │ ├── inet.conf │ │ ├── interia.conf │ │ ├── katamail.conf │ │ ├── kids.conf │ │ ├── kincafe.conf │ │ ├── konnects.conf │ │ ├── koolro.conf │ │ ├── lastfm.conf │ │ ├── libero.conf │ │ ├── linkedin.conf │ │ ├── livejournal.conf │ │ ├── lovento.conf │ │ ├── lycos.conf │ │ ├── mail2world.conf │ │ ├── mail_com.conf │ │ ├── mail_in.conf │ │ ├── mail_ru.conf │ │ ├── meinvz.conf │ │ ├── meta.conf │ │ ├── mevio.conf │ │ ├── motortopia.conf │ │ ├── msn.conf │ │ ├── multiply.conf │ │ ├── mycatspace.conf │ │ ├── mydogspace.conf │ │ ├── mynet.conf │ │ ├── myspace.conf │ │ ├── netaddress.conf │ │ ├── netlog.conf │ │ ├── ning.conf │ │ ├── nz11.conf │ │ ├── o2.conf │ │ ├── operamail.conf │ │ ├── orkut.conf │ │ ├── perfspot.conf │ │ ├── plaxo.conf │ │ ├── plazes.conf │ │ ├── plurk.conf │ │ ├── pochta.conf │ │ ├── popstarmail.conf │ │ ├── rambler.conf │ │ ├── rediff.conf │ │ ├── sapo.conf │ │ ├── skyrock.conf │ │ ├── tagged.conf │ │ ├── techemail.conf │ │ ├── terra.conf │ │ ├── twitter.conf │ │ ├── uk2.conf │ │ ├── vimeo.conf │ │ ├── virgilio.conf │ │ ├── vkontakte.conf │ │ ├── walla.conf │ │ ├── web_de.conf │ │ ├── wpl.conf │ │ ├── xanga.conf │ │ ├── xing.conf │ │ ├── xuqa.conf │ │ ├── yahoo.conf │ │ ├── yandex.conf │ │ ├── youtube.conf │ │ └── zapak.conf │ ├── config.php │ ├── example.php │ ├── images │ │ ├── ers.gif │ │ └── oks.gif │ ├── notifier.php │ ├── openinviter.php │ ├── openinviter_stats.sqlite │ ├── plugins │ │ ├── _base.php │ │ ├── _hosted.plg.php │ │ ├── abv.plg.php │ │ ├── aol.plg.php │ │ ├── apropo.plg.php │ │ ├── atlas.plg.php │ │ ├── aussiemail.plg.php │ │ ├── azet.plg.php │ │ ├── badoo.plg.php │ │ ├── bebo.plg.php │ │ ├── bigstring.plg.php │ │ ├── bookcrossing.plg.php │ │ ├── bordermail.plg.php │ │ ├── brazencareerist.plg.php │ │ ├── canoe.plg.php │ │ ├── care2.plg.php │ │ ├── clevergo.plg.php │ │ ├── cyworld.plg.php │ │ ├── doramail.plg.php │ │ ├── eons.plg.php │ │ ├── evite.plg.php │ │ ├── facebook.plg.php │ │ ├── faces.plg.php │ │ ├── famiva.plg.php │ │ ├── fastmail.plg.php │ │ ├── fdcareer.plg.php │ │ ├── flickr.plg.php │ │ ├── flingr.plg.php │ │ ├── flixster.plg.php │ │ ├── fm5.plg.php │ │ ├── freemail.plg.php │ │ ├── friendfeed.plg.php │ │ ├── friendster.plg.php │ │ ├── gawab.plg.php │ │ ├── gmail.plg.php │ │ ├── gmx_net.plg.php │ │ ├── graffiti.plg.php │ │ ├── hi5.plg.php │ │ ├── hotmail.plg.php │ │ ├── hushmail.plg.php │ │ ├── hyves.plg.php │ │ ├── inbox.plg.php │ │ ├── india.plg.php │ │ ├── indiatimes.plg.php │ │ ├── inet.plg.php │ │ ├── interia.plg.php │ │ ├── katamail.plg.php │ │ ├── kids.plg.php │ │ ├── kincafe.plg.php │ │ ├── konnects.plg.php │ │ ├── koolro.plg.php │ │ ├── lastfm.plg.php │ │ ├── libero.plg.php │ │ ├── linkedin.plg.php │ │ ├── livejournal.plg.php │ │ ├── lovento.plg.php │ │ ├── lycos.plg.php │ │ ├── mail2world.plg.php │ │ ├── mail_com.plg.php │ │ ├── mail_in.plg.php │ │ ├── mail_ru.plg.php │ │ ├── meinvz.plg.php │ │ ├── meta.plg.php │ │ ├── mevio.plg.php │ │ ├── motortopia.plg.php │ │ ├── msn.plg.php │ │ ├── multiply.plg.php │ │ ├── mycatspace.plg.php │ │ ├── mydogspace.plg.php │ │ ├── mynet.plg.php │ │ ├── myspace.plg.php │ │ ├── netaddress.plg.php │ │ ├── netlog.plg.php │ │ ├── ning.plg.php │ │ ├── nz11.plg.php │ │ ├── o2.plg.php │ │ ├── operamail.plg.php │ │ ├── orkut.plg.php │ │ ├── perfspot.plg.php │ │ ├── plaxo.plg.php │ │ ├── plazes.plg.php │ │ ├── plurk.plg.php │ │ ├── pochta.plg.php │ │ ├── popstarmail.plg.php │ │ ├── rambler.plg.php │ │ ├── rediff.plg.php │ │ ├── sapo.plg.php │ │ ├── skyrock.plg.php │ │ ├── tagged.plg.php │ │ ├── techemail.plg.php │ │ ├── terra.plg.php │ │ ├── twitter.plg.php │ │ ├── uk2.plg.php │ │ ├── vimeo.plg.php │ │ ├── virgilio.plg.php │ │ ├── vkontakte.plg.php │ │ ├── walla.plg.php │ │ ├── web_de.plg.php │ │ ├── wpl.plg.php │ │ ├── xanga.plg.php │ │ ├── xing.plg.php │ │ ├── xuqa.plg.php │ │ ├── yahoo.plg.php │ │ ├── yandex.plg.php │ │ ├── youtube.plg.php │ │ └── zapak.plg.php │ └── stats.php ├── import.php └── inviter │ ├── autoupdate.php │ ├── conf │ ├── abv.conf │ ├── aol.conf │ ├── apropo.conf │ ├── atlas.conf │ ├── aussiemail.conf │ ├── azet.conf │ ├── badoo.conf │ ├── bebo.conf │ ├── bigstring.conf │ ├── bookcrossing.conf │ ├── bordermail.conf │ ├── brazencareerist.conf │ ├── canoe.conf │ ├── care2.conf │ ├── clevergo.conf │ ├── cyworld.conf │ ├── doramail.conf │ ├── eons.conf │ ├── evite.conf │ ├── facebook.conf │ ├── faces.conf │ ├── famiva.conf │ ├── fastmail.conf │ ├── fdcareer.conf │ ├── flickr.conf │ ├── flingr.conf │ ├── flixster.conf │ ├── fm5.conf │ ├── freemail.conf │ ├── friendfeed.conf │ ├── friendster.conf │ ├── gawab.conf │ ├── gmail.conf │ ├── gmx_net.conf │ ├── graffiti.conf │ ├── hi5.conf │ ├── hotmail.conf │ ├── hushmail.conf │ ├── hyves.conf │ ├── inbox.conf │ ├── india.conf │ ├── indiatimes.conf │ ├── inet.conf │ ├── interia.conf │ ├── katamail.conf │ ├── kids.conf │ ├── kincafe.conf │ ├── konnects.conf │ ├── koolro.conf │ ├── lastfm.conf │ ├── libero.conf │ ├── linkedin.conf │ ├── livejournal.conf │ ├── lovento.conf │ ├── lycos.conf │ ├── mail2world.conf │ ├── mail_com.conf │ ├── mail_in.conf │ ├── mail_ru.conf │ ├── meinvz.conf │ ├── meta.conf │ ├── mevio.conf │ ├── motortopia.conf │ ├── msn.conf │ ├── multiply.conf │ ├── mycatspace.conf │ ├── mydogspace.conf │ ├── mynet.conf │ ├── myspace.conf │ ├── netaddress.conf │ ├── netlog.conf │ ├── ning.conf │ ├── nz11.conf │ ├── o2.conf │ ├── operamail.conf │ ├── orkut.conf │ ├── perfspot.conf │ ├── plaxo.conf │ ├── plazes.conf │ ├── plurk.conf │ ├── pochta.conf │ ├── popstarmail.conf │ ├── rambler.conf │ ├── rediff.conf │ ├── sapo.conf │ ├── skyrock.conf │ ├── tagged.conf │ ├── techemail.conf │ ├── terra.conf │ ├── twitter.conf │ ├── uk2.conf │ ├── vimeo.conf │ ├── virgilio.conf │ ├── vkontakte.conf │ ├── walla.conf │ ├── web_de.conf │ ├── wpl.conf │ ├── xanga.conf │ ├── xing.conf │ ├── xuqa.conf │ ├── yahoo.conf │ ├── yandex.conf │ ├── youtube.conf │ └── zapak.conf │ ├── config.php │ ├── images │ ├── ers.gif │ └── oks.gif │ ├── import.php │ ├── notifier.php │ ├── openinviter.php │ ├── openinviter_stats.sqlite │ ├── plugins │ ├── _base.php │ ├── _hosted.plg.php │ ├── abv.plg.php │ ├── aol.plg.php │ ├── apropo.plg.php │ ├── atlas.plg.php │ ├── aussiemail.plg.php │ ├── azet.plg.php │ ├── badoo.plg.php │ ├── bebo.plg.php │ ├── bigstring.plg.php │ ├── bookcrossing.plg.php │ ├── bordermail.plg.php │ ├── brazencareerist.plg.php │ ├── canoe.plg.php │ ├── care2.plg.php │ ├── clevergo.plg.php │ ├── cyworld.plg.php │ ├── doramail.plg.php │ ├── eons.plg.php │ ├── evite.plg.php │ ├── facebook.plg.php │ ├── faces.plg.php │ ├── famiva.plg.php │ ├── fastmail.plg.php │ ├── fdcareer.plg.php │ ├── flickr.plg.php │ ├── flingr.plg.php │ ├── flixster.plg.php │ ├── fm5.plg.php │ ├── freemail.plg.php │ ├── friendfeed.plg.php │ ├── friendster.plg.php │ ├── gawab.plg.php │ ├── gmail.plg.php │ ├── gmx_net.plg.php │ ├── graffiti.plg.php │ ├── hi5.plg.php │ ├── hotmail.plg.php │ ├── hushmail.plg.php │ ├── hyves.plg.php │ ├── inbox.plg.php │ ├── india.plg.php │ ├── indiatimes.plg.php │ ├── inet.plg.php │ ├── interia.plg.php │ ├── katamail.plg.php │ ├── kids.plg.php │ ├── kincafe.plg.php │ ├── konnects.plg.php │ ├── koolro.plg.php │ ├── lastfm.plg.php │ ├── libero.plg.php │ ├── linkedin.plg.php │ ├── livejournal.plg.php │ ├── lovento.plg.php │ ├── lycos.plg.php │ ├── mail2world.plg.php │ ├── mail_com.plg.php │ ├── mail_in.plg.php │ ├── mail_ru.plg.php │ ├── meinvz.plg.php │ ├── meta.plg.php │ ├── mevio.plg.php │ ├── motortopia.plg.php │ ├── msn.plg.php │ ├── multiply.plg.php │ ├── mycatspace.plg.php │ ├── mydogspace.plg.php │ ├── mynet.plg.php │ ├── myspace.plg.php │ ├── netaddress.plg.php │ ├── netlog.plg.php │ ├── ning.plg.php │ ├── nz11.plg.php │ ├── o2.plg.php │ ├── operamail.plg.php │ ├── orkut.plg.php │ ├── perfspot.plg.php │ ├── plaxo.plg.php │ ├── plazes.plg.php │ ├── plurk.plg.php │ ├── pochta.plg.php │ ├── popstarmail.plg.php │ ├── rambler.plg.php │ ├── rediff.plg.php │ ├── sapo.plg.php │ ├── skyrock.plg.php │ ├── tagged.plg.php │ ├── techemail.plg.php │ ├── terra.plg.php │ ├── twitter.plg.php │ ├── uk2.plg.php │ ├── vimeo.plg.php │ ├── virgilio.plg.php │ ├── vkontakte.plg.php │ ├── walla.plg.php │ ├── web_de.plg.php │ ├── wpl.plg.php │ ├── xanga.plg.php │ ├── xing.plg.php │ ├── xuqa.plg.php │ ├── yahoo.plg.php │ ├── yandex.plg.php │ ├── youtube.plg.php │ └── zapak.plg.php │ └── stats.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ └── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Security.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php └── tinywall_db.sql /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ /social/index.php/$1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | social.tinywall.com 2 | =================== 3 | 4 | Tinywall Social Networking 5 | 6 | ###Installation Instruction 7 | 8 | * Create a database 'tinywall_db' and run SQL the file https://github.com/tinywall/social/blob/master/tinywall_db.sql 9 | 10 | * Configure the encription key in https://github.com/tinywall/social/blob/master/application/config/config.php and database details in https://github.com/tinywall/social/blob/master/application/config/database.php 11 | 12 | * Go to http://localhost/social/ and login with username: demouser ; password: demouser 13 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

என் பெயர் 8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/controllers/admin/home.php: -------------------------------------------------------------------------------- 1 | load->library('session'); 7 | $this->load->helper('url'); 8 | $this->load->helper('string'); 9 | $this->_checkSession(); 10 | $this->load->model('Twadmin','twadmin'); 11 | } 12 | function _checkSession(){ 13 | if(!$this->session->userdata('admin')){ 14 | redirect('admin'); 15 | } 16 | } 17 | function index() 18 | { 19 | $this->load->view('admin/header_view'); 20 | $this->load->view('admin/home_view'); 21 | $this->load->view('admin/footer_view'); 22 | } 23 | function resendActivationMail(){ 24 | if($this->input->post('resendActivationMail')){ 25 | if($nausers=$this->twadmin->get_nonactive_users()){ 26 | foreach($nausers as $row){ 27 | //echo $row->email; 28 | $this->twadmin->send_twmail($row->email,'','TinyWall activation mail',"Click the following link to activate your account : username.'/'.$row->email_key."'>".base_url().'activate/'.$row->username.'/'.$row->email_key.""); 29 | } 30 | $this->session->set_flashdata('alert','Mail Sent to all nonactive users'); 31 | redirect('admin/home/resendActivationMail'); 32 | } 33 | } 34 | $this->load->view('admin/header_view'); 35 | $this->load->view('admin/resend_activation_mail_view'); 36 | $this->load->view('admin/footer_view'); 37 | } 38 | } 39 | ?> -------------------------------------------------------------------------------- /application/controllers/admin/landing.php: -------------------------------------------------------------------------------- 1 | load->library('session'); 7 | $this->load->helper('url'); 8 | $this->load->helper('string'); 9 | } 10 | function index() 11 | { 12 | $this->load->view('admin/header_view'); 13 | $this->load->view('admin/login_view'); 14 | $this->load->view('admin/footer_view'); 15 | } 16 | function authenticate(){ 17 | if($this->input->post('login')){ 18 | if($this->input->post('username')=='admin'&&$this->input->post('password')=='adminadmin'){ 19 | $session_data = array( 20 | 'admin'=> TRUE 21 | ); 22 | $this->session->set_userdata($session_data); 23 | redirect('admin/home'); 24 | }else{ 25 | redirect('admin'); 26 | } 27 | } 28 | } 29 | function login(){ 30 | $this->load->view('admin/header_view'); 31 | $this->load->view('admin/login_view'); 32 | $this->load->view('admin/footer_view'); 33 | } 34 | function logout(){ 35 | $session_data = array( 36 | 'admin' => FALSE 37 | ); 38 | $this->session->unset_userdata($session_data); 39 | redirect('admin/login'); 40 | } 41 | } -------------------------------------------------------------------------------- /application/controllers/admin/users.php: -------------------------------------------------------------------------------- 1 | load->library('session'); 7 | $this->load->helper('url'); 8 | $this->load->helper('string'); 9 | $this->_checkSession(); 10 | $this->load->model('Twadmin','twadmin'); 11 | } 12 | function _checkSession(){ 13 | if(!$this->session->userdata('admin')){ 14 | redirect('admin'); 15 | } 16 | } 17 | function index() 18 | { 19 | $data['page_title']="Search @ TinyWall"; 20 | $this->load->view('admin/header_view',$data); 21 | if($this->input->get('search')){ 22 | $data['search']=TRUE; 23 | $search_query['name']=$this->input->get('name'); 24 | $search_query['location']=$this->input->get('location'); 25 | $search_query['page']=$this->input->get('page'); 26 | $search_result=$this->twadmin->get_usersearch_result($search_query); 27 | $data['search_result']=$search_result['search_result']; 28 | $data['search_result_count']=$search_result['search_result_count']; 29 | } 30 | $this->load->view('admin/users_view',$data); 31 | $this->load->view('admin/footer_view',$data); 32 | } 33 | function view(){ 34 | $data['page_title']="Search @ TinyWall"; 35 | $this->load->view('admin/header_view',$data); 36 | if($user_data=$this->twadmin->getCurrentDataPublic($this->uri->segment(4))){ 37 | $current_user=$user_data[0];$data['current_user']=$current_user; 38 | $this->load->view('admin/user_view',$data); 39 | } 40 | $this->load->view('admin/footer_view',$data); 41 | } 42 | function ban(){ 43 | if($this->twadmin->ban_user($this->uri->segment(4))){ 44 | redirect('admin/users/view/'.$this->uri->segment(4)); 45 | } 46 | } 47 | function unban(){ 48 | if($this->twadmin->unban_user($this->uri->segment(4))){ 49 | redirect('admin/users/view/'.$this->uri->segment(4)); 50 | } 51 | } 52 | } 53 | ?> -------------------------------------------------------------------------------- /application/controllers/chat.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 8 | $this->load->model('Functions','twfunctions'); 9 | $this->userValid=$this->_validateUser(array('chat')); 10 | } 11 | function index(){ 12 | 13 | } 14 | function ping(){ 15 | if($this->userValid){ 16 | if($this->twfunctions->update_chat_ping($this->session_user->id_users)){ 17 | $message='Successfully Pinged';$success=TRUE; 18 | }else{ 19 | $message='Something Went Wrong';$success=FALSE; 20 | } 21 | $outarr=array('message'=>$message,'success'=>$success,'friend'=>$this->onlinefriends()); 22 | header('Content-type: application/json'); 23 | echo "{\"response\":".json_encode($outarr)."}"; 24 | } 25 | } 26 | function onlinefriends(){ 27 | if($this->userValid){ 28 | $onlinefriends=$this->twfunctions->get_online_friends($this->session_user->id_users); 29 | $newarr=array(); 30 | foreach($onlinefriends as $row2){ 31 | $arrx=array('id'=>$row2->id_users,'fullname'=>$row2->first_name.' '.$row2->last_name,'username'=>$row2->username); 32 | array_push($newarr,$arrx); 33 | } 34 | return $newarr; 35 | } 36 | } 37 | } 38 | ?> -------------------------------------------------------------------------------- /application/controllers/contacts.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 8 | $this->load->model('Functions','twfunctions'); 9 | $this->userValid=$this->_validateUser(array('contacts')); 10 | } 11 | function index() 12 | { 13 | if($this->userValid){ 14 | //$this->getExtraDetails(array('friends','friendsuggession','toptips',)); 15 | $this->twdata['page_title']=$this->current_user->first_name." ".$this->current_user->last_name." / B2B Plassen"; 16 | $this->twdata['current_page']='contacts'; 17 | $this->load->view('header_view',$this->twdata); 18 | $res=$this->twfunctions->get_contacts($this->session_user->id_users); 19 | $this->twdata['contacts_result']=$res['contacts_result']; $this->load->view('contacts_view',$this->twdata); 20 | $this->load->view('footer_view'); 21 | } 22 | 23 | } 24 | 25 | function add_contact(){ 26 | if($this->userValid){ 27 | $res=$this->twfunctions->add_contact($this->session_user->id_users,$this->input->post('name'),$this->input->post('mobile'),$this->input->post('mail'),$this->input->post('title'),$this->input->post('cname')); 28 | redirect('contacts'); 29 | } 30 | } 31 | function delete_contact(){ 32 | if($this->userValid){ 33 | $res=$this->twfunctions->del_contact($this->uri->segment(3)); 34 | redirect('contacts'); 35 | } 36 | } 37 | } 38 | ?> -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/log.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 8 | $this->load->model('Functions','twfunctions'); 9 | $this->userValid=$this->_validateUser(array('log')); 10 | } 11 | function index() 12 | { 13 | if($this->userValid){ 14 | $this->twdata['page_title']=$this->current_user->first_name." ".$this->current_user->last_name." @ TinyWall"; 15 | $this->load->view('header_view',$this->twdata); 16 | 17 | $this->load->view('footer_view'); 18 | } 19 | } 20 | } 21 | ?> -------------------------------------------------------------------------------- /application/controllers/poke.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 8 | $this->load->model('Functions','twfunctions'); 9 | $this->userValid=$this->_validateUser(array('poke')); 10 | } 11 | function index() 12 | { 13 | //$this->getExtraDetails(array('friends','mutualfriends','friendsuggession','toptips')); 14 | $this->twdata['page_title']=$this->current_user->first_name." ".$this->current_user->last_name." / B2B Plassen"; 15 | $this->twdata['current_page']='poke'; 16 | $this->load->view('header_view',$this->twdata); 17 | //$res=$this->twfunctions->get_contacts($this->session_user->id_users); 18 | //$this->twdata['contacts_result']=$res['contacts_result']; 19 | $this->load->view('poke_view',$this->twdata); 20 | $this->load->view('footer_view'); 21 | 22 | } 23 | function get_pokes(){ 24 | if($this->userValid){ 25 | $pokes_result=$this->twfunctions->show_pokes($this->session_user->id_users); 26 | $this->_json_poke($pokes_result); 27 | } 28 | } 29 | function add_poke(){ 30 | if($this->userValid){ 31 | $res=$this->twfunctions->add_poke($this->session_user->id_users,$this->current_user->id_users); 32 | } 33 | } 34 | function remove_poke(){ 35 | if($this->userValid){ 36 | $res=$this->twfunctions->delete_poke($this->uri->segment(3)); 37 | } 38 | } 39 | function _json_poke($poke_result){ 40 | $outarr=array(); 41 | foreach($poke_result as $row){ 42 | $arr=array('from'=>$row->username,'id'=>$row->id_pokes); 43 | array_push($outarr,$arr); 44 | } 45 | header('Content-type: application/json'); 46 | echo "{\"poke\":".json_encode($outarr)."}"; 47 | } 48 | } 49 | ?> -------------------------------------------------------------------------------- /application/controllers/search.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 9 | $this->load->model('Functions','twfunctions'); 10 | $this->userValid=$this->_validateUser(array('search')); 11 | } 12 | function index() 13 | { 14 | if($this->userValid){ 15 | $this->twdata['page_title']="Search @ TinyWall"; 16 | $this->load->view('header_view',$this->twdata); 17 | if($this->input->get('search')){ 18 | $this->twdata['search']=TRUE; 19 | $search_query['name']=$this->input->get('name'); 20 | $search_query['location']=$this->input->get('location'); 21 | $search_query['page']=$this->input->get('page'); 22 | $search_query['user_id']=$this->session_user->id_users; 23 | $search_result=$this->twfunctions->get_search_result($search_query); 24 | $this->twdata['search_result']=$search_result['search_result']; 25 | $this->twdata['search_result_count']=$search_result['search_result_count']; 26 | } 27 | $this->load->view('search_view',$this->twdata); 28 | $this->load->view('footer_view'); 29 | } 30 | } 31 | } 32 | ?> -------------------------------------------------------------------------------- /application/controllers/sms.php: -------------------------------------------------------------------------------- 1 | load->helper('url'); 8 | $this->load->model('Functions','twfunctions'); 9 | $this->userValid=$this->_validateUser(array('sms')); 10 | } 11 | function index() 12 | { 13 | if($this->userValid){ 14 | $this->twdata['page_title']=$this->current_user->first_name." ".$this->current_user->last_name." @ TinyWall"; 15 | $this->load->view('header_view',$this->twdata); 16 | 17 | $this->load->view('footer_view'); 18 | } 19 | } 20 | } 21 | ?> -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Page Not Found 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Database Error 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Error 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/site_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/french/site_lang.php: -------------------------------------------------------------------------------- 1 | lang->localized($uri); 20 | } 21 | 22 | return parent::site_url($uri); 23 | } 24 | 25 | } 26 | //CI 2.0 27 | // class MY_Config extends CI_Config { 28 | 29 | // function site_url($uri = '') 30 | // { 31 | // if (is_array($uri)) 32 | // { 33 | // $uri = implode('/', $uri); 34 | // } 35 | 36 | //make it compatible with CI 2.0 37 | // if (class_exists('CI_Controller')) 38 | // { 39 | // $uri = get_instance()->lang->localized($uri); 40 | // } 41 | 42 | // return parent::site_url($uri); 43 | // } 44 | 45 | // } 46 | // END MY_Config Class 47 | 48 | /* End of file MY_Config.php */ 49 | /* Location: ./system/application/libraries/MY_Config.php */ -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/404.php: -------------------------------------------------------------------------------- 1 | Page Not Found -------------------------------------------------------------------------------- /application/views/about_view.php: -------------------------------------------------------------------------------- 1 |

About TinyWall


2 | TinyWall is a Student Social Networking Web Portal fully developed by Students. -------------------------------------------------------------------------------- /application/views/account_setting_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Profile Settings of first_name." ".$current_user->last_name;?>

4 | 5 |
6 | 7 | Mobile No. :

8 | E-Mail ID :

9 |
10 |
11 |
-------------------------------------------------------------------------------- /application/views/admin/footer_view.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/gender_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 33 |
-------------------------------------------------------------------------------- /application/views/admin/home_view.php: -------------------------------------------------------------------------------- 1 | Admin Home -------------------------------------------------------------------------------- /application/views/admin/login_view.php: -------------------------------------------------------------------------------- 1 | Admin Login 2 |
3 | 4 | 5 | 6 |
-------------------------------------------------------------------------------- /application/views/admin/register_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 48 | 69 |
-------------------------------------------------------------------------------- /application/views/admin/resend_activation_mail_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 |
5 | Resend activation email for nonactive users? 6 |
-------------------------------------------------------------------------------- /application/views/admin/tophituser_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42 | Most Visited pages 43 |
44 | 45 | username.'">'.$page->first_name." ".$page->last_name."
"; 49 | 50 | } 51 | 52 | 53 | ?> 54 | -------------------------------------------------------------------------------- /application/views/admin/toplogin_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42 | Highest Logins 43 |
44 | 45 | username.'">'.$user->first_name." ".$user->last_name."
"; 49 | 50 | } 51 | 52 | 53 | ?> 54 | -------------------------------------------------------------------------------- /application/views/admin/toppages_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42 | Most Visited pages 43 |
44 | 45 | url.'">'.base_url().substr($page->url,1)."
"; 49 | 50 | } 51 | 52 | 53 | ?> 54 | -------------------------------------------------------------------------------- /application/views/admin/topvieweduser_log_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 42 | Most Visited pages 43 |
44 | 45 | username.'">'.$page->first_name." ".$page->last_name."
"; 49 | 50 | } 51 | 52 | 53 | ?> 54 | -------------------------------------------------------------------------------- /application/views/admin/trend_log_view.php: -------------------------------------------------------------------------------- 1 | status_message; 6 | } 7 | function isnt_common_word($word) 8 | { 9 | $word_filter = array('no', 'and', 'or', 'the','is'); 10 | return !in_array($word, $word_filter); 11 | } 12 | $text = strtolower($text); 13 | preg_match_all('~[\w-]+~', $text, $words); 14 | $words = array_filter($words[0], 'isnt_common_word'); 15 | $words = array_count_values($words); 16 | arsort($words); 17 | ?> 18 |

Top Trends:


19 | '.($i+1)." ) ".$keys[$i]."

"; 23 | } 24 | ?> -------------------------------------------------------------------------------- /application/views/admin/user_view.php: -------------------------------------------------------------------------------- 1 | first_name.' '.$current_user->last_name;?> 2 | Ban 3 | Unban -------------------------------------------------------------------------------- /application/views/album_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | 7 |
8 | 9 | 10 |
11 | 14 |

Albums :

15 | username."/album/".$row->id_album."'>".$row->name.'
'; 18 | if($row->photo_cover){ 19 | echo "last_name.".jpg' />
"; 20 | }else{ 21 | echo "
"; 22 | } 23 | } 24 | ?> 25 |
26 | -------------------------------------------------------------------------------- /application/views/alert_view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/api_view.php: -------------------------------------------------------------------------------- 1 |

TinyWall API

-------------------------------------------------------------------------------- /application/views/dashboard_view.php: -------------------------------------------------------------------------------- 1 |

first_name." ".$session_user->last_name);?>

2 |
content
3 | -------------------------------------------------------------------------------- /application/views/dream_view.php: -------------------------------------------------------------------------------- 1 | 2 | Living | 3 | Dream | 4 | Edit 5 | 6 | Living | 7 | Dream 8 | 9 | session->flashdata('alert'); 11 | ?> 12 | 13 |

Dream World of first_name." ".$current_user->last_name;?>

14 | 16 | 17 | -------------------------------------------------------------------------------- /application/views/edit_profile_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 |

Edit Profile of first_name." ".$session_user->last_name;?>

5 |
6 | First Name :
7 | Last Name :
8 | Gender :gender==1){echo "checked";}?>>Male 9 | gender==0){echo "checked";}?>>Female
10 | DOB :
11 | About Me :
12 | Location :
17 | City : 18 |
19 | 20 |
-------------------------------------------------------------------------------- /application/views/editworld_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 |

Edit World of first_name." ".$session_user->last_name;?>

5 |
6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 21 | 22 | 26 | 29 | 31 | 32 | 33 | 34 | 37 | 38 | 39 | 40 |
9 | Item 10 | HavingWish To HaveNone
20 | name?> 23 | 24 | status==2){echo "checked";}?> value="2"> 25 | 27 | status==1){echo "checked";}?> value="1"> 28 | 30 | status){echo "checked";}?> value="0">
41 |
42 |
43 |
-------------------------------------------------------------------------------- /application/views/existing_contacts_view.php: -------------------------------------------------------------------------------- 1 |

Existing Contacts

2 | 5 |
6 |
username;?>'/>
7 |
8 | 9 |
10 | birth_date));?> / 11 | gender){echo 'M';}else{echo 'F';}?> / 12 | city.', '.$row->country;?> 13 |
14 | 15 |
16 |
17 |
18 | 21 |
22 | Next -------------------------------------------------------------------------------- /application/views/fbregister_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | 17 |

Sign up with TinyWall

18 |
19 | Firstname:
20 |
21 | Last name:
22 |
23 | Email:
24 |
25 | Username:
26 |
27 | 28 | Gender:
29 | />Male 30 | />Female
31 | DOB:
32 |
33 | Mobile:
34 |
35 | Password:
36 |
37 | 38 |
-------------------------------------------------------------------------------- /application/views/followers_view.php: -------------------------------------------------------------------------------- 1 | "; 3 | if(sizeof($followers)){ 4 | foreach($followers as $row){ 5 | ?> 6 |
7 |
username;?>'/>
8 |
9 | 10 |
11 | birth_date));?> / 12 | gender){echo 'M';}else{echo 'F';}?> / 13 | city.', '.$row->country;?> 14 |
15 |
16 | 17 | Add Friend 18 | 19 | Unfriend 20 | 21 | Send Message 22 |
23 |
24 |
25 |
26 | "; 29 | } 30 | ?> -------------------------------------------------------------------------------- /application/views/followings_view.php: -------------------------------------------------------------------------------- 1 | "; 3 | if(sizeof($followings)){ 4 | foreach($followings as $row){ 5 | ?> 6 |
7 |
username;?>'/>
8 |
9 | 10 |
11 | birth_date));?> / 12 | gender){echo 'M';}else{echo 'F';}?> / 13 | city.', '.$row->country;?> 14 |
15 |
16 | 17 | Add Friend 18 | 19 | Unfriend 20 | 21 | Send Message 22 |
23 |
24 |
25 |
26 | "; 29 | } 30 | ?> -------------------------------------------------------------------------------- /application/views/footer_view.php: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 | 7 | 8 | 9 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /application/views/forgot_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 |
5 | Email : 6 | 7 |
-------------------------------------------------------------------------------- /application/views/friend_suggession_view.php: -------------------------------------------------------------------------------- 1 | 5 |
6 |
username;?>'/>
7 |
8 | 9 |
10 | birth_date));?> / 11 | gender){echo 'M';}else{echo 'F';}?> / 12 | city.', '.$row->country;?> 13 |
14 | 15 |
16 |
17 |
18 | "; 21 | } 22 | ?> -------------------------------------------------------------------------------- /application/views/home_view.php: -------------------------------------------------------------------------------- 1 |
Home of first_name." ".$current_user->last_name;?>
-------------------------------------------------------------------------------- /application/views/import_view.php: -------------------------------------------------------------------------------- 1 | username; 4 | echo $this->session->flashdata('alert'); 5 | ?> 6 |
7 | Email :
8 | Message :
9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/index_footer_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /application/views/index_header_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php if(isset($page_title)){echo $page_title;}else{echo "TinyWall";}?> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
  20 |
21 | -------------------------------------------------------------------------------- /application/views/living_view.php: -------------------------------------------------------------------------------- 1 | 2 | Living | 3 | Dream | 4 | Edit 5 | 6 | Living | 7 | Dream 8 | 9 | session->flashdata('alert'); 11 | ?> 12 | 13 |

Living World of first_name." ".$current_user->last_name;?>

14 | 16 | 17 | -------------------------------------------------------------------------------- /application/views/login_view.php: -------------------------------------------------------------------------------- 1 |
Login to TinyWall
2 |
3 | session->flashdata('alert')){echo "
".$this->session->flashdata('alert')."
";}?> 4 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 25 | 29 | 30 |
Username
Password
24 | 26 | 27 | 28 |
31 |
32 |
33 | -------------------------------------------------------------------------------- /application/views/menu_view.php: -------------------------------------------------------------------------------- 1 | Logout -------------------------------------------------------------------------------- /application/views/mutual_friends_view.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | 7 |
8 | 9 |
10 | birth_date));?> / 11 | gender){echo 'M';}else{echo 'F';}?> / 12 | city.', '.$row->country;?> 13 |
14 | 15 |
16 |
17 |
18 |
"; 21 | } 22 | ?> -------------------------------------------------------------------------------- /application/views/nonexting_contacts_view.php: -------------------------------------------------------------------------------- 1 |

Invite friends

2 |
3 |

4 | contact_email."' />".$row->contact_name.' : '.$row->contact_email."


"; 7 | } 8 | ?> 9 | 10 |
11 | Next -------------------------------------------------------------------------------- /application/views/openidregister_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | 17 |

Sign up with TinyWall

18 |
19 | Firstname:
20 |
21 | Last name:
22 |
23 | Email:
24 |
25 | Username:
26 |
27 | 28 | Gender:
29 | Male 30 | Female
31 | DOB:
32 |
33 | Mobile:
34 |
35 | Password:
36 |
37 | 38 |
-------------------------------------------------------------------------------- /application/views/password_setting_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Profile Settings of first_name." ".$current_user->last_name;?>

4 |
5 | Old Password :

6 | New Password :

7 | 8 | 9 |
-------------------------------------------------------------------------------- /application/views/photo_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert');?> 2 | Albums >> Photos >> Photo
3 | id_photo."/".$current_user->first_name.' '.$current_user->last_name.".jpg' />
"; 5 | echo "album_id."'>Back to album | "; 6 | if($photo->previous){echo "previous | ";} 7 | if($photo->next){echo "next";} 8 | ?> 9 |
10 |
11 |
12 | -------------------------------------------------------------------------------- /application/views/poke_view.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

Pokes

5 | 6 | 20 | 21 | 26 | 29 |
Loading...
30 | 56 | 60 |
Poke
61 | 62 | 65 |
66 |
67 | -------------------------------------------------------------------------------- /application/views/privacy_view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Profile Settings of first_name." ".$current_user->last_name;?>

4 |
5 | Public :privacy==0){echo "checked";}?> value="0">

6 | Friends: privacy==1){echo "checked";}?> value="1">

7 |
8 | -------------------------------------------------------------------------------- /application/views/profile_picture_crop_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | 5 | 6 | 7 | 54 | 55 | 56 | 57 |
58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 |
-------------------------------------------------------------------------------- /application/views/profile_picture_upload_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | Upload using Gavatar 5 |
6 | 7 | 8 |
-------------------------------------------------------------------------------- /application/views/profile_view.php: -------------------------------------------------------------------------------- 1 | 14 | 17 |
Profile of first_name." ".$current_user->last_name;?>
18 |
First Name
first_name;?>
19 |
Last Name
last_name;?>
20 |
Gender
gender==1){echo "Male";}else{echo "Female";};?>
21 |
Date Of Birth
birth_date;?>
22 |
About Me
about;?>
23 |
Country
country;?>
24 |
City
city;?>
25 | -------------------------------------------------------------------------------- /application/views/public_profile_view.php: -------------------------------------------------------------------------------- 1 |

Public Profile of first_name." ".$current_user->last_name;?>

-------------------------------------------------------------------------------- /application/views/public_search_view.php: -------------------------------------------------------------------------------- 1 | input->get('page')){$search_page=1;}else{$search_page=$this->input->get('page');} 4 | ?> 5 | Search 6 |
7 | Name :
8 | Location :
9 | 10 | 11 |
12 | 15 | input->get('page')&&$this->input->get('page')>1){ ?> 16 | Prev 17 | 18 | ($search_page*$search_limit)){ ?> 19 | Next 20 | 21 |
".$search_result_count." results found

"; 23 | if($search_result_count){ 24 | foreach($search_result as $row){ 25 | ?> 26 |
27 | 28 |
29 | 30 |
31 | birth_date));?> / 32 | gender){echo 'M';}else{echo 'F';}?> / 33 | city.', '.$row->country;?> 34 |
35 | 36 |
37 |
38 |
39 |
"; 42 | } 43 | } 44 | ?> -------------------------------------------------------------------------------- /application/views/setting_view.php: -------------------------------------------------------------------------------- 1 | Account | 2 | Password | 3 | Themes | 4 | Privacy 5 |


-------------------------------------------------------------------------------- /application/views/snaps_view.php: -------------------------------------------------------------------------------- 1 | 6 | session->flashdata('alert');?> 7 | Albums >> Photos
8 | 11 |
12 | 13 | 14 | 15 |
16 | 19 | last_name.".jpg' />"; 23 | if(!$user_relation){ 24 | echo "id_photo."'>delete
"; 25 | } 26 | } 27 | echo "
"; 28 | } 29 | ?> 30 |
31 |
32 |
33 |
34 | -------------------------------------------------------------------------------- /application/views/terms_view.php: -------------------------------------------------------------------------------- 1 |

Terms & Conditions

-------------------------------------------------------------------------------- /application/views/tour_view.php: -------------------------------------------------------------------------------- 1 |

TinyWall Tour


2 | -------------------------------------------------------------------------------- /application/views/twitterregister_view.php: -------------------------------------------------------------------------------- 1 | session->flashdata('alert'); 3 | ?> 4 | 19 |

Sign up with TinyWall

20 |
21 | Firstname:
22 | '/>
23 | Last name:
24 |
25 | Email:
26 |
27 | Username:
28 |
29 | 30 | Gender:
31 | Male 32 | Female
33 | DOB:
34 |
35 | Mobile:
36 |
37 | Password:
38 |
39 | 40 | 43 |
-------------------------------------------------------------------------------- /aulib/ajaxfileupload.css: -------------------------------------------------------------------------------- 1 | html, body 2 | { 3 | margin: 0; 4 | padding: 0; 5 | } 6 | body 7 | { 8 | font: 12px/1.3em Arial, Helvetica, sans-serif; 9 | color: #000; 10 | background-color: #fff; 11 | } 12 | h1, h2, h3, h4, h5 13 | { 14 | margin: 0 0 1em; 15 | color: #F2683E; 16 | } 17 | h1 18 | { 19 | font-size: 18px; 20 | font-weight: normal; 21 | } 22 | p{margin: 0 0 1em;} 23 | a, 24 | a:link, 25 | a:visited{color: #F2683E;} 26 | a:hover, 27 | a:active{} 28 | a img{border: none;} 29 | form{margin: 0;} 30 | fieldset{padding: 0;} 31 | hr 32 | { 33 | height: 1px; 34 | border: none; 35 | color: #999; 36 | background-color: #999; 37 | } 38 | 39 | /* ~~~ === POSITIONG SELECTORS ======================================= ~~~ */ 40 | #wrapper 41 | { 42 | position: relative; 43 | width: 773px; 44 | height: 474px; 45 | } 46 | 47 | #content 48 | { 49 | float: left; 50 | display: inline; 51 | width: 541px; 52 | height: 341px; 53 | margin: 30px 0 0 8px; 54 | padding: 22px; 55 | } -------------------------------------------------------------------------------- /aulib/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/aulib/loading.gif -------------------------------------------------------------------------------- /cplib/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine Off -------------------------------------------------------------------------------- /cplib/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/cplib/arrow.gif -------------------------------------------------------------------------------- /cplib/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/cplib/cross.gif -------------------------------------------------------------------------------- /cplib/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/cplib/hs.png -------------------------------------------------------------------------------- /css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/css/Jcrop.gif -------------------------------------------------------------------------------- /css/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/css/arrow.gif -------------------------------------------------------------------------------- /css/chat.css: -------------------------------------------------------------------------------- 1 | .chatbox { 2 | position: fixed; 3 | position:expression("absolute"); 4 | width: 225px; 5 | display:none; 6 | } 7 | 8 | .chatboxhead { 9 | background-color: #f99d39; 10 | padding:7px; 11 | color: #ffffff; 12 | 13 | border-right:1px solid #f99d39; 14 | border-left:1px solid #f99d39; 15 | } 16 | 17 | .chatboxblink { 18 | background-color: #176689; 19 | border-right:1px solid #176689; 20 | border-left:1px solid #176689; 21 | } 22 | 23 | .chatboxcontent { 24 | font-family: arial,sans-serif; 25 | font-size: 13px; 26 | color: #333333; 27 | height:200px; 28 | width:209px; 29 | overflow-y:auto; 30 | overflow-x:auto; 31 | padding:7px; 32 | border-left:1px solid #cccccc; 33 | border-right:1px solid #cccccc; 34 | border-bottom:1px solid #eeeeee; 35 | background-color: #ffffff; 36 | line-height: 1.3em; 37 | } 38 | 39 | .chatboxinput { 40 | padding: 5px; 41 | background-color: #ffffff; 42 | border-left:1px solid #cccccc; 43 | border-right:1px solid #cccccc; 44 | border-bottom:1px solid #cccccc; 45 | } 46 | 47 | .chatboxtextarea { 48 | width: 206px; 49 | height:44px; 50 | padding:3px 0pt 3px 3px; 51 | border: 1px solid #eeeeee; 52 | margin: 1px; 53 | overflow:hidden; 54 | } 55 | 56 | .chatboxtextareaselected { 57 | border: 2px solid #f99d39; 58 | margin:0; 59 | } 60 | 61 | .chatboxmessage { 62 | margin-left:1em; 63 | } 64 | 65 | .chatboxinfo { 66 | margin-left:-1em; 67 | color:#666666; 68 | 69 | } 70 | 71 | .chatboxmessagefrom { 72 | margin-left:-1em; 73 | font-weight: bold; 74 | } 75 | 76 | .chatboxmessagecontent { 77 | } 78 | 79 | .chatboxoptions { 80 | float: right; 81 | } 82 | 83 | .chatboxoptions a { 84 | text-decoration: none; 85 | color: white; 86 | font-weight:bold; 87 | font-family:Verdana,Arial,"Bitstream Vera Sans",sans-serif; 88 | } 89 | 90 | .chatboxtitle { 91 | float: left; 92 | } -------------------------------------------------------------------------------- /css/jquery.Jcrop.css: -------------------------------------------------------------------------------- 1 | /* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ 2 | .jcrop-holder { text-align: left; } 3 | 4 | .jcrop-vline, .jcrop-hline 5 | { 6 | font-size: 0; 7 | position: absolute; 8 | background: white url('Jcrop.gif') top left repeat; 9 | } 10 | .jcrop-vline { height: 100%; width: 1px !important; } 11 | .jcrop-hline { width: 100%; height: 1px !important; } 12 | .jcrop-handle { 13 | font-size: 1px; 14 | width: 7px !important; 15 | height: 7px !important; 16 | border: 1px #eee solid; 17 | background-color: #333; 18 | *width: 9px; 19 | *height: 9px; 20 | } 21 | 22 | .jcrop-tracker { width: 100%; height: 100%; } 23 | 24 | .custom .jcrop-vline, 25 | .custom .jcrop-hline 26 | { 27 | background: yellow; 28 | } 29 | .custom .jcrop-handle 30 | { 31 | border-color: black; 32 | background-color: #C7BB00; 33 | -moz-border-radius: 3px; 34 | -webkit-border-radius: 3px; 35 | } 36 | -------------------------------------------------------------------------------- /css/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .ac_results { 2 | padding: 0px; 3 | border: 1px solid black; 4 | background-color: white; 5 | overflow: hidden; 6 | z-index: 99999; 7 | } 8 | 9 | .ac_results ul { 10 | width: 100%; 11 | list-style-position: outside; 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | } 16 | 17 | .ac_results li { 18 | margin: 0px; 19 | padding: 2px 5px; 20 | cursor: default; 21 | display: block; 22 | /* 23 | if width will be 100% horizontal scrollbar will apear 24 | when scroll mode will be used 25 | */ 26 | /*width: 100%;*/ 27 | font: menu; 28 | font-size: 12px; 29 | /* 30 | it is very important, if line-height not setted or setted 31 | in relative units scroll will be broken in firefox 32 | */ 33 | line-height: 16px; 34 | overflow: hidden; 35 | } 36 | 37 | .ac_loading { 38 | /*background: white url('indicator.gif') right center no-repeat;*/ 39 | } 40 | 41 | .ac_odd { 42 | background-color: #eee; 43 | } 44 | 45 | .ac_over { 46 | background-color: #2774B4; 47 | color: white; 48 | } 49 | -------------------------------------------------------------------------------- /css/jquery.validity.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Style used by the label output mode. 3 | * Applied to the error labels that get positioned after an input. 4 | */ 5 | label.error { 6 | color:#fff; 7 | margin-left:2px; 8 | background-image:url('arrow.gif'); 9 | background-position:left center; 10 | background-repeat:no-repeat; 11 | padding:2px; 12 | padding-left:18px; 13 | -moz-border-radius:4px; 14 | -webkit-border-radius: 4px; 15 | } 16 | 17 | /* 18 | * Styles used by the modal output mode. 19 | * '.validity-modal-msg' is applied to the modal boxes 20 | * and '.validity-modal-msg:hover' is applied to suggest 21 | * to the user that the boxes are clickable. 22 | */ 23 | .validity-modal-msg { 24 | position:absolute; 25 | z-index:2; 26 | background-color:#999; 27 | border:solid 1px #000; 28 | padding:4px; 29 | cursor:pointer; 30 | } 31 | .validity-modal-msg:hover { 32 | background-color:#aaa; 33 | } 34 | 35 | /* 36 | * Styles used by the summary output mode. 37 | * '.validity-summary-container' is a container on the page that should contain a UL 38 | * which is the actual summary. The container can hold 39 | * an extra bit of text (or anything really) that explains what the summary is. 40 | * '.validity-erroneous' is applied to every input that fails. 41 | */ 42 | .validity-summary-container { display:none; } 43 | .validity-summary-output ul { } 44 | .validity-erroneous { border:solid 2px #f56600 !important; } 45 | -------------------------------------------------------------------------------- /css/screen.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * CSS Document 4 | * Written by Ryan Yonzon 5 | * http://ryan.rawswift.com/ 6 | */ 7 | 8 | html, body { 9 | margin:0px; /* FF hack: or we'll have double scrollbar showing on the browser */ 10 | overflow:hidden; /* hide browser's main scrollbar */ 11 | 12 | } 13 | 14 | #main_container { 15 | width:100%; 16 | /*background-color:#ffffff; /* DO NOT REMOVE THIS; or you'll have issue w/ the scrollbar, when the mouse pointer is on a white space */ 17 | overflow-x: hidden; 18 | overflow-y: scroll; 19 | height:100%; /* this will make sure that the height will extend at the bottom */ 20 | position:absolute; /* container div must be absolute, for our fixed bar to work */ 21 | } -------------------------------------------------------------------------------- /css/screen_ie.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * CSS Document 4 | * Written by Ryan Yonzon 5 | * http://ryan.rawswift.com/ 6 | */ 7 | 8 | /* 9 | * IE hack 10 | */ 11 | html, body { 12 | margin:0px; 13 | overflow:hidden; /* hide browser's main scrollbar */ 14 | height:100%; /* make sure we'll use 100% of the page's height */ 15 | } 16 | 17 | #main_container { 18 | width:100%; /* make sure we'll use 100% of page's width */ 19 | /*background-color:#ffffff; /* DO NOT REMOVE THIS; or you'll have issue w/ the scrollbar, when the mouse pointer is on a white space */ 20 | overflow-x: hidden; 21 | overflow-y: scroll; 22 | } 23 | -------------------------------------------------------------------------------- /css/tipsy.css: -------------------------------------------------------------------------------- 1 | .tipsy { padding: 5px; font-size: 10px; opacity: 0.8; filter: alpha(opacity=80); background-repeat: no-repeat; background-image: url(../images/themes/default/tipsy.gif); } 2 | .tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; } 3 | .tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; } 4 | .tipsy-north { background-position: top center; } 5 | .tipsy-south { background-position: bottom center; } 6 | .tipsy-east { background-position: right center; } 7 | .tipsy-west { background-position: left center; } 8 | -------------------------------------------------------------------------------- /images/Desktop_.ini: -------------------------------------------------------------------------------- 1 | 2011-1-30 -------------------------------------------------------------------------------- /images/album_pictures/full/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/1.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/10.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/11.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/12.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/13.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/14.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/15.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/16.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/17.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/18.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/19.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/2.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/20.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/21.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/22.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/23.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/24.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/25.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/26.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/27.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/28.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/29.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/3.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/30.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/31.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/32.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/33.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/34.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/35.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/36.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/37.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/38.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/39.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/4.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/40.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/41.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/42.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/43.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/5.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/6.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/7.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/8.jpg -------------------------------------------------------------------------------- /images/album_pictures/full/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/full/9.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/1.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/10.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/11.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/12.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/13.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/14.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/15.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/16.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/17.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/18.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/19.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/2.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/20.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/21.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/22.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/23.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/24.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/25.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/26.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/27.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/28.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/29.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/3.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/30.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/31.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/32.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/33.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/34.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/35.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/36.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/37.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/38.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/39.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/4.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/40.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/41.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/42.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/43.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/5.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/6.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/7.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/8.jpg -------------------------------------------------------------------------------- /images/album_pictures/thumb/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/album_pictures/thumb/9.jpg -------------------------------------------------------------------------------- /images/clouds - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/clouds - Copy.png -------------------------------------------------------------------------------- /images/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/clouds.png -------------------------------------------------------------------------------- /images/clouds.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/clouds.psd -------------------------------------------------------------------------------- /images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/facebook.png -------------------------------------------------------------------------------- /images/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/friends.png -------------------------------------------------------------------------------- /images/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/gmail.png -------------------------------------------------------------------------------- /images/landing_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/landing_bg.png -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/logo.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/logo.png -------------------------------------------------------------------------------- /images/pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/pillar.png -------------------------------------------------------------------------------- /images/profile_pictures/full/arundavid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/full/arundavid.jpg -------------------------------------------------------------------------------- /images/profile_pictures/full/ashokraj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/full/ashokraj.jpg -------------------------------------------------------------------------------- /images/profile_pictures/full/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/full/default.jpg -------------------------------------------------------------------------------- /images/profile_pictures/full/melwynjensen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/full/melwynjensen.jpg -------------------------------------------------------------------------------- /images/profile_pictures/full/smartmohi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/full/smartmohi.jpg -------------------------------------------------------------------------------- /images/profile_pictures/thumb/arundavid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/thumb/arundavid.jpg -------------------------------------------------------------------------------- /images/profile_pictures/thumb/ashokraj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/thumb/ashokraj.jpg -------------------------------------------------------------------------------- /images/profile_pictures/thumb/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/thumb/default.jpg -------------------------------------------------------------------------------- /images/profile_pictures/thumb/melwynjensen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/thumb/melwynjensen.jpg -------------------------------------------------------------------------------- /images/profile_pictures/thumb/smartmohi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/profile_pictures/thumb/smartmohi.jpg -------------------------------------------------------------------------------- /images/themes/default/alert_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/alert_close.png -------------------------------------------------------------------------------- /images/themes/default/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/header_bg.png -------------------------------------------------------------------------------- /images/themes/default/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/logo.png -------------------------------------------------------------------------------- /images/themes/default/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/right-arrow.png -------------------------------------------------------------------------------- /images/themes/default/search-zoom-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/search-zoom-icon.png -------------------------------------------------------------------------------- /images/themes/default/status_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_comment.png -------------------------------------------------------------------------------- /images/themes/default/status_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_delete.png -------------------------------------------------------------------------------- /images/themes/default/status_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_image.png -------------------------------------------------------------------------------- /images/themes/default/status_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_like.png -------------------------------------------------------------------------------- /images/themes/default/status_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_link.png -------------------------------------------------------------------------------- /images/themes/default/status_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_time.png -------------------------------------------------------------------------------- /images/themes/default/status_unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_unlike.png -------------------------------------------------------------------------------- /images/themes/default/status_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/status_video.png -------------------------------------------------------------------------------- /images/themes/default/tipsy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/themes/default/tipsy.gif -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/twitter.png -------------------------------------------------------------------------------- /images/world/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/world/1.png -------------------------------------------------------------------------------- /images/world/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/world/2.png -------------------------------------------------------------------------------- /images/world/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/world/3.png -------------------------------------------------------------------------------- /images/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinywall/social/cca73eb8c564788977a8c58fbfc086fdc2c28c66/images/yahoo.png -------------------------------------------------------------------------------- /js/Desktop_.ini: -------------------------------------------------------------------------------- 1 | 2011-1-30 -------------------------------------------------------------------------------- /js/jquery.bgiframe.min.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net) 2 | * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 3 | * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. 4 | * 5 | * $LastChangedDate: 2007-07-22 01:45:56 +0200 (Son, 22 Jul 2007) $ 6 | * $Rev: 2447 $ 7 | * 8 | * Version 2.1.1 9 | */ 10 | (function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='